Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Export Data to fixed length file
Message
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00769560
Message ID:
00769561
Views:
20
>How can I export a memo field data to fixed length text file?
>
You can first convert memo field into character field and than copy result cursor into text file.
SELECT field1, field2, ..., LEFT(Fieldmemo,254) ;
  FROM mytable ;
  INTO CURSOR crsTemp
COPY SDF TO (lcTextFile)
--sb--
Previous
Reply
Map
View

Click here to load this message in the networking platform