If you encounter an error during data import, use the instructions in this document to resolve it. Note that the error table records only data format errors.
Errors that arise during data import are categorized as either data format errors or non-data format errors.
When creating a foreign table, specify LOG INTO error_table_name. Data format errors occurring during the data import will be written into the specified table. You can run the following SQL statement to query error details:
1 | SELECT * FROM error_table_name; |
Column |
Type |
Description |
---|---|---|
nodeid |
integer |
ID of the node where an error is reported |
begintime |
timestamp with time zone |
Time when a data format error is reported |
filename |
character varying |
Name of the source data file where an error about data format occurs |
rownum |
bigint |
Number of the row where an error occurs in a source data file |
rawrecord |
text |
Raw record of the data format error in the source data file |
detail |
text |
Error details |
If a non-data format error occurs during data import, the entire process is halted and the error is not recorded in the error table. You can locate and troubleshoot a non-data format error based on the error message displayed during data import.
Troubleshoot data import errors based on obtained error information and the description in the following table.