COPY FROM
COPY ... FROM
is a statement that allows loading data from files on the filesystem and importing them into SQream tables. This is the recommended way for bulk loading CSV files into SQream DB. In general, COPY
moves data between filesystem files and SQream DB tables.
Note
Learn how to migrate from CSV files in the Inserting Data from a CSV File guide
To copy data from a table to a file, see COPY TO.
To load Parquet or ORC files, see CREATE FOREIGN TABLE
Permissions
The role must have the INSERT
permission to the destination table.
Syntax
COPY [schema name.]table_name
FROM WRAPPER fdw_name
OPTIONS
(
[ copy_from_option [, ...] ]
)
;
schema_name ::= identifer
table_name ::= identifier
copy_from_option ::=
LOCATION = { filename | S3 URI | HDFS URI }
| QUOTE = {'C' | E'\ooo')
| OFFSET = { offset }
| LIMIT = { limit }
| DELIMITER = '{ delimiter }'
| RECORD_DELIMITER = '{ record delimiter }'
| ERROR_LOG = '{ local filepath }'
| REJECTED_DATA = '{ local filepath }'
| CONTINUE_ON_ERROR = { true | false }
| ERROR_COUNT = '{ error count }'
| DATETIME_FORMAT = '{ parser format }'
| AWS_ID = '{ AWS ID }'
| AWS_SECRET = '{ AWS Secret }'
offset ::= positive integer
limit ::= positive integer
delimiter ::= string
record delimiter ::= string
error count ::= integer
parser_format ::= see supported parser table below
AWS ID ::= string
AWS Secret ::= string
Note
Some options are applicable to CSVs only.
These include:
OFFSET
, LIMIT
, DELIMITER
, RECORD_DELIMITER
, REJECTED_DATA
, DATETIME_FORMAT
Elements
Parameter |
Default value |
Value range |
Description |
---|---|---|---|
|
None |
Table to copy data into |
|
|
“ |
Specifies an alternative quote character. The quote character must be a single, 1-byte printable ASCII character, and the equivalent octal syntax of the copy command can be used. The quote character cannot be contained in the field delimiter, the record delimiter, or the null marker. |
|
|
|
The name of the Foreign Data Wrapper to use |
|
|
None |
A path on the local filesystem, S3, or HDFS URI. For example, |
|
|
|
>1, but no more than the number of lines in the first file |
The row number to start with. The first row is |
|
unlimited |
1 to 2147483647. |
When specified, tells SQream DB to stop loading after the specified number of rows. Unlimited if unset. |
|
|
Almost any ASCII character, See field delimiters section below |
Specifies the field terminator - the character (or characters) that separates fields or columns within each row of the file. |
|
|
|
Specifies the row terminator - the character that separates lines or rows, also known as a new line separator. |
|
No error log |
When used, the
|
|
|
Inactive |
When used, the
|
|
|
|
true, false |
Specifies if errors should be ignored or skipped. When set to This parameter should be set together with |
|
|
1 to 2147483647 |
Specifies the threshold for the maximum number of faulty records that will be ignored. This setting must be used in conjunction with |
|
ISO8601 for all columns |
Allows specifying a non-default date formats for specific columns |
|
|
None |
Specifies the authentication details for secured S3 buckets |
Supported Date Formats
Name |
Pattern |
Examples |
---|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Pattern |
Description |
---|---|
|
four digit year representation (0000-9999) |
|
two digit month representation (01-12) |
|
two digit day of month representation (01-31) |
|
short month representation (Jan-Dec) |
|
short day of week representation (Sun-Sat). |
|
two digit 24 hour representation (00-23) |
|
two digit 12 hour representation (00-12) |
|
uppercase AM/PM representation |
|
two digit minute representation (00-59) |
|
two digit seconds representation (00-59) |
|
3 digits fraction representation for milliseconds (000-999) |
Note
These date patterns are not the same as date parts used in the DATEPART function.
Supported Field Delimiters
Field delimiters can be one or more characters.
Customizing Quotations Using Alternative Characters
Syntax Example 1 - Customizing Quotations Using Alternative Characters
The following is the correct syntax for customizing quotations using alternative characters:
copy t from wrapper csv_fdw options (location = '/tmp/source_file.csv', quote='@');
copy t to wrapper csv_fdw options (location = '/tmp/destination_file.csv', quote='@');
Usage Example 1 - Customizing Quotations Using Alternative Characters
The following is an example of line taken from a CSV when customizing quotations using a character:
Pepsi-"Cola",@Coca-"Cola"@,Sprite,Fanta
Syntax Example 2 - Customizing Quotations Using ASCII Character Codes
The following is the correct syntax for customizing quotations using ASCII character codes:
copy t from wrapper csv_fdw options (location = '/tmp/source_file.csv', quote=E'\064');
copy t to wrapper csv_fdw options (location = '/tmp/destination_file.csv', quote=E'\064');
Usage Example 2 - Customizing Quotations Using ASCII Character Codes
The following is an example of line taken from a CSV when customizing quotations using an ASCII character code:
Pepsi-"Cola",@Coca-"Cola"@,Sprite,Fanta
Multi-Character Delimiters
SQream DB supports multi-character field delimiters, sometimes found in non-standard files.
A multi-character delimiter can be specified. For example, DELIMITER '%%'
, DELIMITER '{~}'
, etc.
Printable Characters
Any printable ASCII character (or characters) can be used as a delimiter without special syntax. The default CSV field delimiter is a comma (,
).
A printable character is any ASCII character in the range 32 - 126.
Literal quoting rules apply with delimiters. For example, to use '
as a field delimiter, use DELIMITER ''''
Non-Printable Characters
A non-printable character (1 - 31, 127) can be used in its octal form.
A tab can be specified by escaping it, for example \t
. Other non-printable characters can be specified using their octal representations, by using the E'\000'
format, where 000
is the octal value of the character.
For example, ASCII character 15
, known as “shift in”, can be specified using E'\017'
.
Unsupported Field Delimiters
The following ASCII field delimiters (octal range 001 - 176) are not supported:
Character |
Decimal |
Symbol |
Character |
Decimal |
Symbol |
Character |
Decimal |
Symbol |
---|---|---|---|---|---|---|---|---|
45 |
55 |
b |
98 |
142 |
q |
113 |
161 |
|
. |
46 |
56 |
c |
99 |
143 |
r |
114 |
162 |
: |
58 |
72 |
d |
100 |
144 |
s |
115 |
163 |
92 |
134 |
e |
101 |
145 |
t |
116 |
164 |
|
0 |
48 |
60 |
f |
102 |
146 |
u |
117 |
165 |
1 |
49 |
61 |
g |
103 |
147 |
v |
118 |
166 |
2 |
50 |
62 |
h |
104 |
150 |
w |
119 |
167 |
3 |
51 |
63 |
i |
105 |
151 |
x |
120 |
170 |
4 |
52 |
64 |
j |
106 |
152 |
y |
121 |
171 |
5 |
53 |
65 |
k |
107 |
153 |
z |
122 |
172 |
6 |
54 |
66 |
l |
108 |
154 |
N |
78 |
116 |
7 |
55 |
67 |
m |
109 |
155 |
10 |
49 |
12 |
8 |
56 |
70 |
n |
110 |
156 |
13 |
49 |
13 |
9 |
57 |
71 |
o |
111 |
157 |
|||
a |
97 |
141 |
p |
112 |
160 |
Capturing Rejected Rows
Prior to the column process and storage, the COPY
command parses the data.
Whenever the data can’t be parsed because it is improperly formatted or doesn’t match the data structure, the entire record (or row) will be rejected.
When
ERROR_LOG
is not used, theCOPY
command will stop and roll back the transaction upon the first error.When
ERROR_LOG
is set andERROR_VERBOSITY
is set to1
(default), all errors and rejected rows are saved to the file path specified.When
ERROR_LOG
is set andERROR_VERBOSITY
is set to0
, rejected rows are saved to the file path specified, but errors are not logged. This is useful for replaying the file later.
CSV Support
By default, SQream DB’s CSV parser can handle RFC 4180 standard CSVs , but can also be modified to support non-standard CSVs (with multi-character delimiters, unquoted fields, etc).
All CSV files should be prepared according to these recommendations:
Files are UTF-8 or ASCII encoded
Field delimiter is an ASCII character or characters
Record delimiter, also known as a new line separator, is a Unix-style newline (
\n
), DOS-style newline (\r\n
), or Mac style newline (\r
).Fields are optionally enclosed by double-quotes, or mandatory quoted if they contain one of the following characters:
The record delimiter or field delimiter
A double quote character
A newline
If a field is quoted, any double quote that appears must be double-quoted (similar to the string literals quoting rules. For example, to encode
What are "birds"?
, the field should appear as"What are ""birds""?"
.Other modes of escaping are not supported (e.g.
1,"What are \"birds\"?"
is not a valid way of escaping CSV values).
Marking Null Markers
NULL
values can be marked in two ways in the CSV:
An explicit null marker. For example,
col1,\N,col3
An empty field delimited by the field delimiter. For example,
col1,,col3
Note
If a text field is quoted but contains no content (""
) it is considered an empty text field. It is not considered NULL
.
Examples
Loading a Standard CSV File
COPY table_name FROM WRAPPER csv_fdw OPTIONS (location = '/tmp/file.csv');
Skipping Faulty Rows
COPY table_name FROM WRAPPER csv_fdw OPTIONS (location = '/tmp/file.csv', continue_on_error = true);
Skipping a Maximum of 100 Faulty Rows
COPY table_name FROM WRAPPER csv_fdw OPTIONS (location = '/tmp/file.csv', continue_on_error = true, error_count = 100);
Loading a Pipe Separated Value (PSV) File
COPY table_name FROM WRAPPER csv_fdw OPTIONS (location = '/tmp/file.psv', delimiter = '|');
Loading a Tab Separated Value (TSV) File
COPY table_name FROM WRAPPER csv_fdw OPTIONS (location = '/tmp/file.tsv', delimiter = '\t');
Loading an ORC File
COPY table_name FROM WRAPPER orc_fdw OPTIONS (location = '/tmp/file.orc');
Loading a Parquet File
COPY table_name FROM WRAPPER parquet_fdw OPTIONS (location = '/tmp/file.parquet');
Loading a Text File with Non-Printable Delimiters
In the file below, the separator is DC1
, which is represented by ASCII 17 decimal or 021 octal.
COPY table_name FROM WRAPPER psv_fdw OPTIONS (location = '/tmp/file.txt', delimiter = E'\021');
Loading a Text File with Multi-Character Delimiters
In the file below, the separator is ^|
.
COPY table_name FROM WRAPPER psv_fdw OPTIONS (location = '/tmp/file.txt', delimiter = '^|');
In the file below, the separator is '|
. The quote character has to be repeated, as per the literal quoting rules.
COPY table_name FROM WRAPPER psv_fdw OPTIONS (location = '/tmp/file.txt', delimiter = ''''|');
Loading Files with a Header Row
Use OFFSET
to skip rows.
Note
When loading multiple files (e.g. with wildcards), this setting affects each file separately.
COPY table_name FROM WRAPPER csv_fdw OPTIONS (location = '/tmp/file.psv', delimiter = '|', offset = 2);
Loading Files Formatted for Windows (\r\n
)
COPY table_name FROM WRAPPER csv_fdw OPTIONS (location = '/tmp/file.psv', delimiter = '\r\n');
Loading a File from a Public S3 Bucket
Note
The bucket must be publicly available and objects can be listed
COPY table_name FROM WRAPPER csv_fdw OPTIONS (location = 's3://sqream-demo-data/file.csv', delimiter = '\r\n', offset = 2);
Loading Files from an Authenticated S3 Bucket
COPY table_name FROM WRAPPER psv_fdw OPTIONS (location = 's3://secret-bucket/*.csv', DELIMITER = '\r\n', OFFSET = 2, AWS_ID = '12345678', AWS_SECRET = 'super_secretive_secret');
Saving Rejected Rows to a File
Note
When loading multiple files (e.g. with wildcards), this error threshold is for the entire transaction.
COPY table_name FROM WRAPPER csv_fdw OPTIONS (location = '/tmp/file.csv',
,continue_on_error = true
,error_log = '/temp/load_error.log'
);
COPY table_name FROM WRAPPER csv_fdw OPTIONS (location = '/tmp/file.psv'
,delimiter '|'
,error_log = '/temp/load_error.log' -- Save error log
,rejected_data = '/temp/load_rejected.log' -- Only save rejected rows
,limit = 100 -- Only load 100 rows
,error_count = 5 -- Stop the load if 5 errors reached
);
Loading CSV Files from a Set of Directories
COPY table_name FROM WRAPPER csv_fdw OPTIONS (location = '/tmp/2019_08_*/*.csv');
Rearranging Destination Columns
When the source of the files does not match the table structure, tell the COPY
command what the order of columns should be
COPY table_name (fifth, first, third) FROM WRAPPER csv_fdw OPTIONS (location = '/tmp/*.csv');
Note
Any column not specified will revert to its default value or NULL
value if nullable
Loading Non-Standard Dates
If files contain dates not formatted as ISO8601
, tell COPY
how to parse the column. After parsing, the date will appear as ISO8601
inside SQream DB.
These are called date parsers. You can find the supported dates in the ‘Supported date parsers’ table above
In this example, date_col1
and date_col2
in the table are non-standard. date_col3
is mentioned explicitly, but can be left out. Any column that is not specified is assumed to be ISO8601
.
COPY table_name FROM WRAPPER csv_fdw OPTIONS (location = '/tmp/*.csv', datetime_format = 'DMY');