I exported a one column table using datatype text from SQL. As a txt and tried as Del file.
I am trying to import this file in DB2.
I created a table in DB2 using one column CLOB.
Every time I import using DB2 tool I receive an error message for every entry.
[IBM][CLI Driver][db2/sun64] SQL0423N Locator variable "1" does not currently represent any value. SQLSTATE=0f001
My text in the table is long. Am I using the correct datatype for long text data?
I tried different datatype and it works but truncates the data.
Here is my longest record.
select max(datalength( Comments)) from dbo.commenttabl e
27628
I am trying to import this file in DB2.
I created a table in DB2 using one column CLOB.
Every time I import using DB2 tool I receive an error message for every entry.
[IBM][CLI Driver][db2/sun64] SQL0423N Locator variable "1" does not currently represent any value. SQLSTATE=0f001
My text in the table is long. Am I using the correct datatype for long text data?
I tried different datatype and it works but truncates the data.
Here is my longest record.
select max(datalength( Comments)) from dbo.commenttabl e
27628
Comment