Oct 12, 2001 #1 kernal Technical User Feb 27, 2001 415 US I have numerous tables and want to create a comma delimited text file of each table. How can this be accomplished. Any help would be much appreciated.
I have numerous tables and want to create a comma delimited text file of each table. How can this be accomplished. Any help would be much appreciated.
Oct 12, 2001 #2 THoey IS-IT--Management Jun 21, 2000 2,142 US SPOON C:\data.txt SELECT Field1 || ',' || Field2 || ',' || Field3 FROM MyTable SPOOL OFF Terry M. Hoey Upvote 0 Downvote
SPOON C:\data.txt SELECT Field1 || ',' || Field2 || ',' || Field3 FROM MyTable SPOOL OFF Terry M. Hoey