Hi
Thanks a lot for your response...
The matching column in DB2 is also a BLOB.
I ran the following sql to create the table I am trying to populate as:
CREATE TABLE PROGC(
COMXYZABCD_ID FOR COLUMN I_COM00001 INTEGER NOT NULL ,
FA_ID VARCHAR(4) CCSID 37 NOT NULL ,
COMXYZABCD_DATA FOR COLUMN BL_CO00001 BLOB(1048576) DEFAULT NULL ,
USER_ID VARCHAR(20) CCSID 37 DEFAULT NULL ,
D_ADD TIMESTAMP DEFAULT NULL ) ;
The data file contains records in the following format:
1^|AB|^|XYZ.001.0.475/|^|1234ID|^|2004-10-18-11.48.50.295000|
The XYZ.001 file referenced by the blob XYZ.001.0.475 contains the actual xml values.
When I ran the CPYFRMIMPF i got the following warning message:
"the selected table contains LOB columns, which require use of secondary stream files.These files contain actual LOB data for import. The corresponding columns of data file contain name and path of the secondary stream file.The import operation will otherwise. See CPYFRMIMPF command for more help".
And the load fails.
Any help on this is much appreciated.