The SYSCS_UTIL.SYSCS_IMPORT_TABLE system procedure imports data from an input file into all of the columns of a table. If the table receiving the imported data already contains data, you can either replace or append to the existing data.
SYSCS_UTIL.SYSCS_IMPORT_TABLE (IN SCHEMANAME VARCHAR(128), IN TABLENAME VARCHAR(128), IN FILENAME VARCHAR(32672), IN COLUMNDELIMITER CHAR(1), IN CHARACTERDELIMITER CHAR(1), IN CODESET VARCHAR(128), IN REPLACE SMALLINT)
No result is returned from the procedure.
CALL SYSCS_UTIL.SYSCS_IMPORT_TABLE (null, 'staff', 'c:/output/myfile.del', ';', '%', null,0);
For more information on importing, see the Derby Tools and Utilities Guide.