Hi
I can't able to rest cache to 0. It says you must have min value 2..
---
The above problem is happening only one tables in my database.
Field struce of the the table
--------------------------
table name ==> PHY_Data
--------------------------
Structure
--------------------------------------------------------
PHY_ID - Integer Identity
USER_ID CHARACTER 10 (Default value)
TS TIMESTAMP 10 (Default value)
--------------------------------------------------------
While importing file, User_ID and TS should be default value i.e user id and Timestamp. So my text file look
like
--------------------------------------------------------
1
2
3
4
5
--------------------------------------------------------
and
my script file is
CONNECT TO UDB;
IMPORT FROM "/db2/PHY_Data.txt" OF DEL
MODIFIED BY IDENTITYIGNORE CHARDEL"" COLDEL, METHOD P (1)
MESSAGES "/db2/logs/PHY_Data.msg"
INSERT INTO DBM0.PHY_Data (PHY_ID);
CONNECT RESET;
Sorry for not giving the field struce earlier. In my table has only 3 fields one is Identity column and other 2 is default value.
There is no problem in generating identity column value for other tables
Please help me....
P.S We can't change the table structure.
