I'm using IBM Data Movement Tool to migrate a database from DB2Z to DB2 LUW. This tool generates dump files with, for one table, blob data represented as hex within the delimited file. I wish to load this into an equivalent DB2 LUW table. The DB2 LOAD process loads the table without errors but the blob data got interpreted as text.
My load command is something similar to the following:
Am I missing something here ? Any idea / suggestion is welcome.
Thanks.
My load command is something similar to the following:
Code:
load from "/path/to/file"
of del
modified by codepage=1208 coldel~ anyorder usedefaults chardel""
delprioritychar dumpfile="/path/to/dumpfile"
method p (1,2,3,4,5,6)
messages "/path/to/messagefile"
replace into "schema"."tablename"
(
"field1",
"field2",
"field3",
"field4",
"field5",
"field6"
)
for exception "schema_exp"."tablename"
nonrecoverable
indexing mode autoselect
;
Thanks.