Quote:
|
Originally Posted by SamCute
Hi,
import from myfile.ixf of ixf messages msg.txt modified by coldel; insert into staff
In the above query please explain the following denotes what ?
'of ixf'
'messages'
'modified by coldel'
Then why haven insert into staff ? -- > Is the above is a full single query ?
Thanks,
Sam
|
Please look at the IMPORT command in the Command Reference, it explains everything!
I messed up, it should have been:
import from myfile.del of del messages msg.txt modified by coldel; insert into staff
This takes everything from the flat file "myfile.del" which is "of del" (delimited ASCII), writes any messages to msg.txt file, assuming a column delimiter of ";".
Insert is the mode, not an SQL statement.
Staff is the target table.
Command Reference.
