I have a new problem with CLPPlus and IMPORT command.
I try to import data into a table which contain a space in its name, but it seems to fail:
SQL> IMPORT FROM '/home/i1058/outfile' INSERT INTO USER1."TABLE 1";
Invalid Syntax Error
SQL> IMPORT FROM '/home/i1058/outfile' INSERT INTO USER1.'TABLE 1';
Invalid Syntax Error
I have tried many things but it always fails.
Of course I have also tried a 'classic' LOAD with CLP and it works perfectly :
db2 'LOAD FROM "outfile" OF DEL MODIFIED BY CODEPAGE=1208 NOCHARDEL INSERT INTO "USER1"."TABLE 1"'
...
Number of rows read = 3
Number of rows skipped = 0
Number of rows loaded = 3
Number of rows rejected = 0
Number of rows deleted = 0
Number of rows committed = 3
Any ideas ?
Thanks and regards
Here's how it works on my 10.5 system:
Looks like documentation has an error in that it does not show the file type option for the CLPPlus
import
command.