COF-C02 · Question #427
What does the TableScan operator represent in the Query Profile?
The correct answer is A. The access to a single table. In Snowflake's Query Profile, the TableScan operator represents the access to a single table. It is the base operator that reads data from a table stored in Snowflake's micro-partitions. Other operators handle different data sources: ExternalScan accesses stage objects…
Question
What does the TableScan operator represent in the Query Profile?
Options
- AThe access to a single table
- BThe access to data stored in stage objects
- CThe list of values provided with the VALUES clause
- DThe records generated using the TABLE (GENERATOR (...)) construct
How the community answered
(41 responses)- A90% (37)
- B2% (1)
- C5% (2)
- D2% (1)
Explanation
In Snowflake's Query Profile, the TableScan operator represents the access to a single table. It is the base operator that reads data from a table stored in Snowflake's micro-partitions. Other operators handle different data sources: ExternalScan accesses stage objects, ValuesClause handles VALUES clause lists, and Generator handles TABLE(GENERATOR()) constructs.
Topics
Community Discussion
No community discussion yet for this question.