ADA-C01 · Question #78
In which scenario will use of an external table simplify a data pipeline?
The correct answer is D. When accessing a Snowflake table that references data files located in cloud storage. According to the Introduction to External Tables documentation, an external table is a Snowflake feature that allows you to query data stored in an external stage as if the data were inside a table in Snowflake. The external stage is not part of Snowflake, so Snowflake does not…
Question
In which scenario will use of an external table simplify a data pipeline?
Options
- AWhen accessing a Snowflake table from a relational database
- BWhen accessing a Snowflake table from an external database within the same region
- CWhen continuously writing data from a Snowflake table to external storage
- DWhen accessing a Snowflake table that references data files located in cloud storage
How the community answered
(35 responses)- A9% (3)
- B6% (2)
- C14% (5)
- D71% (25)
Explanation
According to the Introduction to External Tables documentation, an external table is a Snowflake feature that allows you to query data stored in an external stage as if the data were inside a table in Snowflake. The external stage is not part of Snowflake, so Snowflake does not store or manage the stage. This simplifies the data pipeline by eliminating the need to load the data into Snowflake before querying it. External tables can access data stored in any format that the COPY INTO <table> command supports, such as CSV, JSON, AVRO, ORC, or PARQUET. The other scenarios do not involve external tables, but rather require data loading, unloading, or federation.
Topics
Community Discussion
No community discussion yet for this question.