sql - DB2 Export-Import Error -


i have db2 database in first vm computer. want import tables it. when export 1 of these tables first vm .ixf file perfect , can export it. when tried import new table on second vm got kind of problem , query :

connect rs; import "c:\rs_cust.ixf" of ixf messages "a.txt" create rs.rs_customers; connect reset; 

db2 error how can solve ?

you have force table creation, explained in reason code.

for reason codes 1, 3, 4, 5, 7, 8, 9, 11, 14, 17, , 18:

to force import utility create tables despite fact information missing, specify forcecreate parameter when issue import command create or replace_create parameter.

http://pic.dhe.ibm.com/infocenter/db2luw/v10r5/topic/com.ibm.db2.luw.admin.cmd.doc/doc/r0008304.html : table 5. valid file type modifiers import utility: ixf file format

it added in db2 v9.1: http://publib.boulder.ibm.com/infocenter/db2luw/v9/topic/com.ibm.db2.udb.rn.doc/doc/c0023922.htm


Comments

Popular posts from this blog

java - activate/deactivate sonar maven plugin by profile? -

python - TypeError: can only concatenate tuple (not "float") to tuple -

java - What is the difference between String. and String.this. ? -