Hi ,
Just use below define statement as the data file doesn't have any starting and trailing delimiters and you just need to press enter while creating the sample data i.e your cursor should be in next line.
DEFINE
MANUFACTURER_ID (varchar(2)),
MANUFACTURER_NAME (varchar(10)),
MANFACTURE_CODE (varchar(3)),
your sample data:
1|mayank|ab
22|deepak|xy
10|father|jj
Try with the above define and sample data, It should work fine.BTW, Add checkpoint and other commands in begin loading command (as in our earlier reply)
Hi ,
Just use below define statement as the data file doesn't have any starting and trailing delimiters and you just need to press enter while creating the sample data i.e your cursor should be in next line.
DEFINE
MANUFACTURER_ID (varchar(2)),
MANUFACTURER_NAME (varchar(10)),
MANFACTURE_CODE (varchar(3)),
your sample data:
1|mayank|ab
22|deepak|xy
10|father|jj
Try with the above define and sample data, It should work fine.BTW, Add checkpoint and other commands in begin loading command (as in our earlier reply)