SSC-FDM-HV0001
Inserting values into an external table is not supported in Snowflake
Description
Creating an External Table using the Stored As clause is supported; however, it may behave differently since Hive Format tables support inserting values, while Snowflake External Tables do not support value insertions.
Code Example
Input
CREATE EXTERNAL TABLE IF NOT EXISTS External_table_hive_format
(
order_id int,
date string,
client_name string,
total float
)
stored as AVRO
LOCATION 'gs://sc_external_table_bucket/folder_with_avro/orders.avro';Output
Recommendations
If you need more support, you can email us at [email protected]
Last updated
