The following example passes the CLOB values for column b in deferred chunks:
.SET INDICDATA ON .IMPORT DATA FILE=mar08sales.dat USING (a INTEGER, b CLOB AS DEFERRED) INSERT INTO mytable VALUES (:a, :b);
The following example passes the CLOB values for column b in deferred chunks:
.SET INDICDATA ON .IMPORT DATA FILE=mar08sales.dat USING (a INTEGER, b CLOB AS DEFERRED) INSERT INTO mytable VALUES (:a, :b);