Dear Friend,
This is a simple error that you can resolve it by checking the fields which are in the table & the data which you want to import into the table. Both the fileds & the data should be same.
For Eg.
Consider a table called "student" which has 4 fields namely
sno, name, total, percentage. But the user is going to import the data for that table like below
1, KK, 373, 74.5,
'Pass'
........
See the table is actually having 4 fields, but the user is trying to import the data for 5 fields. This is the problem caused in the given error.
Use the given below statement while importing....
db2 "import from data.csv of del insert into student(sno, name, total,percentage)"
Regards,
KK
