1.0

Table Of Contents
Syntax
SYSCS_UTIL.IMPORT_TABLE_LOBS_FROM_EXTFILE (
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)
IN LOCKTABLE SMALLINT, IN NUMTHREADS INTEGER, IN CASESENSITIVENAMES
SMALLINT
IN IMPORTCLASSNAME VARCHAR(32672), IN ERRORFILE VARCHAR(32672))
The import utility looks in the main import le for a reference to the location of the LOB data.
Species the schema of the table. You can specify a NULL value to use the
default schema name. The SCHEMANAME parameter takes an input argument
that is a VARCHAR (128) data type.
SCHEMANAME
Species the name of the table into which the data is to be imported. This table
cannot be a system table or a declared temporary table. The string must exactly
TABLENAME
match case of the table name. Specifying a NULL value results in an error. The
TABLENAME parameter takes an input argument that is a VARCHAR (128)
data type.
Species the name of the le that contains the data to be imported. If the path
is omitted, the current working directory is used. The specied location of the
FILENAME
le should refer to the server side location if using the Network Server.
Specifying a NULL value results in an error. The FILENAME parameter takes
an input argument that is a VARCHAR (32672) data type.
Species a column delimiter. The specied character is used in place of a comma
to signify the end of a column. You can specify a NULL value to use the default
COLUMNDELIMITER
value of a comma. The COLUMNDELIMITER parameter takes an input
argument that is a CHAR (1) data type.
Species a character delimiter. The specied character is used in place of double
quotation marks to enclose a character string. You can specify a NULL value
CHARACTERDELIMITER
to use the default value of a double quotation mark. The
CHARACTERDELIMITER parameter takes an input argument that is a CHAR
(1) data type.
Species the code set of the data in the input le. The code set name should be
one of the Java-supported character encoding sets. Data is converted from the
CODESET
specied code set to the database code set (UTF-8). You can specify a NULL
value to interpret the data le in the same code set as the JVM in which it is
being executed. The CODESET parameter takes an input argument that is a
VARCHAR (128) data type.
SQLFire does not implement this argument. Imported data is always added
(inserted) to the target table without changing the existing table data. Specify
any value of type SMALLINT.
REPLACE
A input argument of type SMALLINT. With a non-zero value, this procedure
operates similar to SYSCS_UTIL.IMPORT_TABLE, and it locks the table
LOCKTABLE
during the import operation. Specify a value of zero to prevent SQLFire from
locking the table during the import operation.
vFabric SQLFire User's Guide562
vFabric SQLFire Reference