Exporting and Importing Data with GemFire XD / Exporting and Importing Bulk Data from Text Files |
All of the examples in this section are run using the gfxd utility.
The following example shows how to import data into the APP.STAFF table in a sample database from the myfile.del file. The data will be appended to the existing data in the table using 3 separate threads, and the table is not locked during the import:
CALL SYSCS_UTIL.SYSCS_IMPORT_TABLE_EX ('APP','STAFF','myfile.del',null,null,null,0,0,3,1,null,null);
The following example shows how to import data into the APP.STAFF table in a sample database from a delimited data file myfile.del. This example defines the percentage character (%) as the string delimiter, and a semicolon as the column delimiter. GemFire XD ignores primary key constraints (using PUT INTO syntax) and imports using 3 threads. The table is not locked during import.
CALL SYSCS_UTIL.SYSCS_IMPORT_TABLE_EX ('APP','STAFF','c:\output\myfile.del',';','%',null,1,0,3,1,null,null);
The following example shows how to import data into the STAFF table in a sample database from a delimited data file staff.del. The import file staff.del is the main import file and contains references that point to a separate file which contains the LOB data. This example specifies a comma as the column delimiter. The data will be appended to the existing data in the table.
CALL SYSCS_UTIL.SYSCS_IMPORT_TABLE_LOBS_FROM_EXTFILE( 'APP','STAFF','c:\data\staff.del',',','"','UTF-8',0);
CALL SYSCS_UTIL.SYSCS_IMPORT_DATA_LOBS_FROM_EXTFILE ('APP', 'STAFF', 'NAME,DEPT,SALARY,PICTURE', '2,3,4,6', 'c:\data\staff.del', ',','"','UTF-8', 0);
The following example shows how to export data from the APP.STAFF table in a sample database to the file myfile.del.
CALL SYSCS_UTIL.SYSCS_EXPORT_TABLE ('APP','STAFF','myfile.del',null,null,null);
The following example shows how to export data from the APP.STAFF table to a delimited data file myfile.del with the percentage character (%) as the character delimiter, and a semicolon as the column delimiter from the STAFF table.
CALL SYSCS_UTIL.SYSCS_EXPORT_TABLE ('APP','STAFF','c:\output\myfile.del',';','%',null);
The following example shows how to export data from the APP.STAFF table in a sample database to the main file staff.del and the LOB export file pictures.dat.
CALL SYSCS_UTIL.SYSCS_EXPORT_TABLE_LOBS_TO_EXTFILE('APP','STAFF' 'c:\data\staff.del',',','"','UTF-8', 'c:\data\pictures.dat');
The following example shows how to export employee data in department 20 from the STAFF table in a sample database to the file awards.del.
CALL SYSCS_UTIL.SYSCS_EXPORT_QUERY ('SELECT * FROM STAFF WHERE dept=20', 'c:\output\awards.del',null,null,null);
The following example shows how to export employee data in department 20 from the STAFF table in a sample database to the main file staff.del and the lob data to the file pictures.dat.
CALL SYSCS_UTIL.SYSCS_EXPORT_QUERY_LOBS_TO_EXTFILE( 'SELECT * FROM STAFF WHERE dept=20', 'c:\data\staff.del', ',' ,'"', 'UTF-8','c:\data\pictures.dat');