Quote:
|
Originally Posted by juliane26
may be posting the load statement and a sample input row helps as well.
|
Export of 1 row of data in ASCII...
HTML Code:
$ db2 "export to int.del of del select * from db2inst1.int fetch first 1 rows only"
SQL3104N The Export utility is beginning to export data to file "int.del".
SQL3105N The Export utility has finished exporting "1" rows.
Number of rows exported: 1
LOAD ASCII data into table...
PHP Code:
$ db2 "load from int.del of del insert into test.int"
SQL3501W The table space(s) in which the table resides will not be placed in
backup pending state since forward recovery is disabled for the database.
SQL3039W The memory available to LOAD for DATA BUFFER prohibits full LOAD
parallelism. Load parallelism of "4" will be used
SQL3109N The utility is beginning to load data from file "/tmp/int.del".
SQL3500W The utility is beginning the "LOAD" phase at time "12-19-2005
15:34:00.721942".
SQL3519W Begin Load Consistency Point. Input record count = "0".
SQL3520W Load Consistency Point was successful.
SQL3110N The utility has completed processing. "1" rows were read from the
input file.
SQL3519W Begin Load Consistency Point. Input record count = "1".
SQL3520W Load Consistency Point was successful.
SQL3515W The utility has finished the "LOAD" phase at time "12-19-2005
15:34:01.323259".
Number of rows read = 1
Number of rows skipped = 0
Number of rows loaded = 1
Number of rows rejected = 0
Number of rows deleted = 0
Number of rows committed = 1
$
HTH.