I got a flat file like
Code:
3001~"sdsdsdsd'""~200
3002~"abcd"~100
My table emp structure is
Code:
empno integer,
ename varchar(20),
sal integer
If I try executing the following load command
Code:
db2 -x "load from '/export/fring/sample' of del modified by coldel~ replace into emp"
Code:
EMPNO ENAME SAL
3002 aslamah 100
3001 "sdsdsdsd'"~200 (null)
I am just wondering what went wrong here?
Can somebody please help me.
Thanks.