GET 70% Discount on All Products
Coupon code: "Board70"
A table was created using this statement:

Which feature of this table will incur both compute and storage costs?
The row access policy
The Automatic Clustering
The Dynamic Data Masking policy
The not null constraint
How can storage costs be MINIMIZED while maintaining the history and integrity of a large, permanent table that is updated frequently?
Decrease the Time Travel retention period
Convert the table type to transient.
Use zero-copy clones of the table.
Enable automatic clustering
What statement describes Snowflake data architecture?
NoSQL warehouse as a service
Single-node, isolated data
Multi-cluster, shared data
Centralized data storage and processing
When an ACCOUNTADMIN grants a user a custom role, which additional privileges will the user have by default?
The privileges that have been granted to the ACCOUNTADMIN role
The privileges on objects held by the custom role
The privileges accessed by the PUBLIC role
The privileges accessed by the USERADMIN role
When a user is granted a custom role, they inherit only the privileges assigned to that role. This is aligned with the principle of least privilege in RBAC.
What command is used to export or unload data from Snowflake?
PUT @mystage
GET @mystage
COPY INTO @mystage
INSERT @mystage
The command used to export or unload data from Snowflake to a stage (such as a file in an S3 bucket, Azure Blob Storage, or Google Cloud Storage) is thePUTcommand. ThePUTcommand is designed to upload data files from a local file system (in the case of SnowSQL or other client) or a virtual warehouse to a specified stage. This functionality is critical for scenarios where data needs to be extracted from Snowflake for use in external systems, backups, or further processing.
The syntax for thePUTcommand follows the structure:PUT file://
It's important to distinguish that thePUTcommand is used for exporting data out of Snowflake, whereas theCOPY INTO