Bulk data is loaded from an external stage each day by using this command:
COPY INTO source_table -
FROM s3://source/data/files -
STORAGE_INTEGRATION = s3_source_int
FILE_FORMAT = (FORMAT_NAME = source_format)
PATTERN='sales.*[.]csv';
How is the data loaded?
Community Discussion