SSC-EWI-0032
External table requires an external stage to access a external location, define and replace the EXTERNAL_STAGE placeholder
Description
Code Example
Input Code:
CREATE OR REPLACE EXTERNAL TABLE test.Employees_test
(
Employee_id INTEGER,
Name STRING,
Mail STRING,
Position STRING,
Salary INTEGER
)
OPTIONS(
FORMAT='CSV',
SKIP_LEADING_ROWS=1,
URIS=['gs://sc_external_table_bucket/folder_with_csv/Employees.csv']
);Output Code:
Recommendations
Last updated
