MSCINF0006

External table translated to regular table

Severity

None

Description

Since Snowflake supports a more limited set of features for external tables, these will be transformed into regular tables.

Code Example

Input Code:

CREATE OR REPLACE EXTERNAL TABLE external_table_test
(
  col1 INTEGER,
  col2 STRING,
  col3 STRING
)
OPTIONS (
  format = 'CSV',
  field_delimiter = ',',
  uris = ['gs://my_bucket/file.csv']
);

Output Code:

Recommendations

Last updated