nerdexam
Snowflake

COF-C02 · Question #618

Which Snowflake table is an implicit object layered on a stage, where the stage can be either internal or external?

The correct answer is A. Directory table. A directory table is an implicit object automatically overlaid on a Snowflake stage - either internal (Snowflake-managed) or external (e.g., S3, Azure Blob, GCS). It stores file-level metadata such as file path, size, last modified date, and ETag for files on that stage. Users…

Data Loading and Unloading

Question

Which Snowflake table is an implicit object layered on a stage, where the stage can be either internal or external?

Options

  • ADirectory table
  • BTemporary table
  • CTransient table
  • DA table with a materialized view

How the community answered

(64 responses)
  • A
    94% (60)
  • B
    2% (1)
  • C
    2% (1)
  • D
    3% (2)

Explanation

A directory table is an implicit object automatically overlaid on a Snowflake stage - either internal (Snowflake-managed) or external (e.g., S3, Azure Blob, GCS). It stores file-level metadata such as file path, size, last modified date, and ETag for files on that stage. Users can query a directory table with SELECT to list staged files and then join that metadata with other data. It is not created explicitly; it is enabled on the stage with DIRECTORY = (ENABLE = TRUE).

Topics

#Directory Tables#Stages#Data Ingestion

Community Discussion

No community discussion yet for this question.

Full COF-C02 Practice