Snowflake SnowPro Core Certification Exam (COF-C02)
Get full access to the updated question bank and confidently prepare for your exam.
Vendor
Snowflake
Certification
Core Platform
Content
1035 Qs
Status
Verified
Updated
13 hours ago
Test the Practice Engine
Experience our interactive testing environment with free demo questions
Premium Bundle
Complete Success Suite
Save $39 Instantly
-
โFull PDF + Interactive Engine Everything you need to pass
-
โAll Advanced Question Types Drag & Drop, Hotspots, Case Studies
-
โPriority 24/7 Expert Support Direct line to certification leads
-
โ90 Days Free Priority Updates Stay current as exams change
Success Metric
98.4% Pass Rate
Standard Simulation
Practice Engine
One-Time Payment
-
Web-Based (Zero Install)
-
Real Testing Environment Virtual & Practice Modes
-
Interactive Engine Drag & Drop, Hotspots
-
60 Days Free Updates
Compatible with All Devices
Basic Tier
PDF Study Guide
Digital Access
- โ Exam Questions (PDF)
- โ Mobile Friendly
- โ 60 Days Updates
Verified 100-Question Preview (COF-C02)
Verified Community
The CertoMetrics Standard.
Recommend the #1 platform for verified Snowflake certification resources.
Success Network
Help a Colleague Succeed.
Invite a peer to get their own updated COF-C02 prep kit.
Exam Overview
The Snowflake SnowPro Core Certification (COF-C02) validates your foundational knowledge of the Snowflake Data Cloud platform. Achieving this certification demonstrates your proficiency in understanding Snowflake's architecture, core features, and best practices for leveraging its powerful capabilities. It signifies your ability to perform essential tasks such as data loading, querying, and managing virtual warehouses, all crucial for optimizing data operations. This credential is an invaluable asset for professionals seeking to advance their careers in data engineering, analytics, and cloud architecture, showcasing a commitment to mastering modern data platforms and contributing effectively to data-driven initiatives within any organization utilizing Snowflake.
Questions
65
Passing Score
700/1000
Duration
115 Minutes
Difficulty
Intermediate
Level
Associate
Skills Measured
Career Path
Target Roles
Common Questions
Is the material up to date?
Yes. We update our question bank weekly to match the latest Snowflake standards. You get free updates for 90 days.
What format do I get?
You get instant access to both the **PDF** (for reading) and our **Premium Test Engine** (for exam simulation).
Is there a guarantee?
Absolutely. If you fail the COF-C02 exam using our materials, we offer a full money-back guarantee.
When do I get the download?
Instantly. The download link is available in your dashboard immediately after payment is confirmed.
Free Study Guide Samples
Previewing updated COF-C02 bank (100 Questions).
True or False: When data share is established between a Data Provider and a data Consumer, the Data Consumer can extend that data share to other Data Consumers.
Correct Option: B
โ
No
Reasoning: The proposed solution is: "The ACCOUNTADMIN role is recommended for daily operational tasks such as granting privileges to most users within a Snowflake account." This does not meet the goal because the ACCOUNTADMIN role is the most powerful role in Snowflake, with unrestricted access to all objects and privileges, including billing information. Its use should be severely restricted and reserved for initial setup, emergency situations, or highly sensitive, infrequent administrative tasks. Using ACCOUNTADMIN for daily operations violates the principle of least privilege and introduces significant security risks.
Correct Approach: For daily operational tasks and privilege management, it is best practice to utilize more granular system-defined roles such as SYSADMIN (for managing virtual warehouses and database objects), SECURITYADMIN (for managing object privileges), and USERADMIN (for managing users and roles), or custom roles derived from these. This approach ensures users only have the minimum necessary privileges to perform their job functions, enhancing the overall security posture of the Snowflake account.
A department uses a multi-cluster virtual warehouse to run ad hoc reports for multiple business analysts. The warehouse load history shows that many report queries were queuing before they were run.
How should this issue be solved?
Correct Option: B
โ
Add more clusters to the warehouse.
Description: Snowflake's multi-cluster warehouses allow you to scale compute resources to handle varying workloads and concurrency requirements. A multi-cluster warehouse can be configured with a minimum and maximum number of clusters, enabling automatic scaling based on demand. Each cluster operates independently and can process queries concurrently.
Why this fits: When queries are frequently queuing, it indicates that the current compute resources (the existing single cluster or limited number of clusters) are insufficient to handle the volume of concurrent queries. Adding more clusters (by configuring the warehouse as a multi-cluster warehouse or increasing the maximum clusters for an existing one) allows the warehouse to scale out horizontally. This means more queries can be processed simultaneously across multiple clusters, significantly reducing or eliminating query queuing and improving overall concurrency.
Example: A data analytics team has a daily report that involves many concurrent users running ad-hoc queries, causing frequent queuing on their X-Small warehouse. By converting the warehouse to a multi-cluster setup with a minimum of 1 and a maximum of 3 X-Small clusters, Snowflake automatically scales up to 3 clusters during peak query times, allowing more queries to run in parallel and reducing user wait times.
Which function can be used to convert semi-structured data into a relational representation?
Correct Option: A
โ
FLATTEN
Description: The FLATTEN table function in Snowflake is used to convert hierarchical data (like arrays or objects within a VARIANT column) into a relational representation. It produces a LATERAL VIEW that can be joined with the original table. Specifically, it can deconstruct an array into separate rows, with each element becoming a new row.
Why this fits: When dealing with semi-structured data (often JSON) loaded into a VARIANT column, it's common to encounter arrays where each element needs to be processed as an individual record. For instance, an array of line items within an order or an array of tags associated with a product. The FLATTEN function is the primary tool in Snowflake for unnesting such arrays, making their elements accessible for querying, filtering, and joining as if they were in a separate table. This is a fundamental operation for anyone preparing for the SnowPro Core certification, as semi-structured data handling is a key area.
Example: Suppose you have a table orders with a variant column order_details containing JSON. If order_details has an array items, you could unnest it as follows:
SELECT
o.order_id,
item.value:product_id::VARCHAR AS product_id,
item.value:quantity::INT AS quantity
FROM
orders o,
LATERAL FLATTEN(input => o.order_details:items) AS item;
Why would a Snowflake user load JSON data into a VARIA.~T column instead of a stnng column?
Correct Option: D
โ
A VARIENT column will have a better query performance than a string column.
Description: A VARIANT column in Snowflake is specifically designed to store semi-structured data (like JSON, Avro, ORC, Parquet, or XML) efficiently. Snowflake's internal engine optimizes the storage and querying of VARIANT data by performing schema inference and storing the data in a compressed, columnar format, often allowing for direct access to elements without full re-parsing on every query.
Why this fits: When dealing with semi-structured data, using a VARIANT column generally leads to better query performance compared to storing the same data as a STRING (e.g., JSON stored as a VARCHAR). If semi-structured data is stored as a STRING, Snowflake would need to parse the entire string using functions like PARSE_JSON at query time for every access to an internal element, which is a CPU-intensive operation. VARIANT columns, leveraging Snowflake's native optimizations, avoid this repeated parsing overhead, allowing for more efficient extraction and filtering of data within the semi-structured payload.
Example: Consider a table storing event logs. If the log details, which are JSON objects, are stored in a VARIANT column called event_payload, querying event_payload:user_id will be more performant than storing the JSON as a VARCHAR in event_string and querying PARSE_JSON(event_string):user_id, especially across a large dataset.
When creating a user it is advisable sable to:
Choose 2 answers
Correct Option: B,C
โ
Force an immediate password change
Description: Forcing an immediate password change is a security measure that prompts a new user to define their own strong password upon their initial login to Snowflake, rather than using a system-generated or temporary password.
Why this fits: When creating new user accounts in Snowflake, it is a critical security best practice to ensure that the initial password known by an administrator is not retained by the user. By forcing a password change, the user takes ownership of their account security from the outset, reducing the risk of unauthorized access due to compromised temporary credentials. This is a standard user creation setting.
Example: An administrator provisions a new user account. As part of the user creation process, they select an option that dictates the new user must change their password the very first time they log in to the Snowflake web interface or connect via client tools.
โ Set a default role for the user
Description: A default role is the specific role automatically activated for a user immediately upon their successful login to Snowflake. This role dictates the initial set of permissions and access rights the user will have within the Snowflake environment.
Why this fits: Snowflake's security model is built on Role-Based Access Control (RBAC). When creating a new user, assigning a default role is essential for them to have any practical access to Snowflake objects (databases, schemas, tables, warehouses, etc.) immediately upon login. Without a default role, a user would log in without any active permissions, rendering them unable to perform tasks until they manually switched to a different role. This is a fundamental aspect of user setup.
Example: A new data engineer user is created. The administrator assigns the
DATA_ENGINEER_ROLE as the user's default role. Upon logging in, the user automatically operates with the permissions granted to the DATA_ENGINEER_ROLE, allowing them to immediately interact with development databases and pipelines.What is the MINIMUM Snowflake edition that has column-level security enabled?
Correct Option: B
โ
Enterprise
Description: Snowflake's Enterprise Edition extends the capabilities of the Standard Edition by providing enhanced data governance, security features, and business continuity options. Key features include extended Time Travel (90 days), support for Multi-Cluster Warehouses for improved concurrency, data replication for disaster recovery and high availability, and additional security features necessary for compliance with various regulatory standards like HIPAA, PCI DSS, and SOC 2.
Why this fits: The Enterprise Edition is typically chosen by organizations that require more robust data management capabilities, higher levels of performance for concurrent workloads, and stricter compliance with industry-specific regulations. It's the go-to edition for businesses needing to ensure high data availability, longer data retention for auditing, and advanced security beyond the basic requirements.
Example: A healthcare organization needs to store patient data with strict compliance to HIPAA regulations and also requires the ability to replicate their data to a secondary region for disaster recovery purposes. They also anticipate high concurrency on their analytical workloads and need to maintain a 90-day history of all data changes. The Enterprise Edition offers the necessary security features, data replication, Multi-Cluster Warehouses, and extended Time Travel (90 days) to meet these demanding requirements.
Use of which feature or setting consumes Snowflake credits, but generates no storage costs?
Correct Option: D
โ
Search optimization service
Description: The Snowflake Search Optimization Service is a feature designed to significantly improve the performance of specific types of queries, particularly those involving point lookups, equality predicates, and IN lists on large tables. It works by creating and maintaining a specialized, persistent search access path for specified columns within a table. This access path allows Snowflake to quickly locate the relevant micro-partitions and rows that match the query's predicate without performing full table or extensive micro-partition scans.
Why this fits: For scenarios where users frequently need to retrieve a small subset of data from a very large table based on precise filter conditions (e.g., finding a customer by a unique ID or specific email address), the Search Optimization Service provides the most targeted and effective acceleration. It drastically reduces query latency by minimizing the amount of data that needs to be scanned, making it ideal for operational analytics or specific data retrieval tasks.
Example: Consider a global ORDERS table with billions of rows. An application frequently queries this table to retrieve details for a specific order_id or all orders placed by a specific customer_id. By enabling search optimization on the order_id and customer_id columns, queries such as SELECT * FROM orders WHERE order_id = 'XYZ789'; or SELECT * FROM orders WHERE customer_id IN ('CUST123', 'CUST456'); will execute significantly faster, providing near-instantaneous results.
What 1s the MINIMUM Snowflake ed1t1on that offers data protection for extremely sens1ttve data such as Protected Health Information (PHI)?
A Standard
Correct Option: C
โ
Business Critical
Description: The Snowflake Business Critical Edition (formerly Enterprise for Sensitive Data) offers the highest level of data protection and advanced features required for regulated industries and sensitive workloads. It includes all features of the Enterprise Edition, plus enhanced security capabilities such as Tri-Secret Secure, HIPAA and PCI DSS compliance support, and the ability to use PrivateLink for secure network connectivity.
Why this fits: The Business Critical edition is specifically designed for organizations with stringent security and compliance requirements for their data. Features like Tri-Secret Secure (which adds a third layer of encryption via a customer-managed key) and network isolation options like PrivateLink are exclusive to or primarily utilized with this edition, making it the top choice for highly sensitive and regulated data.
Example: A healthcare provider (subject to HIPAA) or a financial institution (subject to PCI DSS) needing to store highly sensitive patient or customer data, requiring features like customer-managed encryption keys, dedicated network connectivity for enhanced security, and strict compliance assurances, would select the Business Critical edition.
True or False: During data unloading, only JSON and CSV files can be compressed.
Correct Option: B
โ
Choice B: False
Description: Snowflake supports various file formats for data unloading, including CSV, JSON, XML, Parquet, and ORC. Compression is a widely available feature during data unloading and is not limited to just JSON and CSV files.
Why this fits: When using the COPY INTO <location> command to unload data, Snowflake allows compression for multiple file types. Specifically:
- CSV, JSON, and XML files can be compressed using various algorithms (e.g., GZIP, BZ2, BROTLI, ZSTD, SNAPPY) by specifying the
COMPRESSIONfile format option. - Parquet and ORC files are typically compressed by default (e.g., using Snappy compression), as compression is an inherent part of these columnar storage formats. Since XML, Parquet, and ORC files can also be compressed during unloading, the statement that "only JSON and CSV files can be compressed" is false.
Which drivers or connectors are supported by Snowflake? (Select TINO).
Correct Option: C,E
โ
Go Snowflake Driver
Description: The Go Snowflake Driver is an officially supported, open-source client driver provided by Snowflake, enabling applications written in the Go programming language to connect and interact with Snowflake.
Why this fits: It adheres to the standard database/sql interface in Go and provides functionality to connect to Snowflake, execute SQL queries, and fetch results, making it a viable option for developers using Go.
Example: A backend microservice built with Go needs to retrieve real-time data from a Snowflake data warehouse to power an application feature. The developer would import and utilize the github.com/snowflakedb/gosnowflake package to establish the connection and execute SELECT statements.
โ Snowflake Connector for Python
Description: The Snowflake Connector for Python is the official, high-performance client library that allows Python applications to connect to Snowflake data warehouses.
Why this fits: It provides a comprehensive API for Python developers to establish connections, execute SQL commands (DML, DDL), manage transactions, and fetch query results, making it an essential tool for data engineers, data scientists, and developers working with Python and Snowflake.
Example: A data scientist creates a Python script to perform daily ETL processes, extracting data from various sources, loading it into Snowflake, and then transforming it using SQL commands. The script would utilize the
snowflake.connector package to connect to Snowflake, upload data via COPY INTO, and execute MERGE statements.
Which Snowflake object is used to prepare, unload, and export data files?
Premium Solution Locked
Unlock all 1035 answers & explanations
Which privilege must be granted by one role to another role, and cannot be revoked?
Premium Solution Locked
Unlock all 1035 answers & explanations
Which statement best describes '' clustering''?
Premium Solution Locked
Unlock all 1035 answers & explanations
Which data transformations are supported while loading data into a table using the COPY INTO command? (Select TINO).
Premium Solution Locked
Unlock all 1035 answers & explanations
How would a user traverse the first-level element in a VARIANT column?
Premium Solution Locked
Unlock all 1035 answers & explanations
What Snowflake objects can contain custom application logic written in JavaScnpt? (Select TWO)
Premium Solution Locked
Unlock all 1035 answers & explanations
Which interfaces can be used to create and/or manage Virtual Warehouses?
Premium Solution Locked
Unlock all 1035 answers & explanations
What is the expiration period for a file URL used to access unstructured data in cloud storage?
Premium Solution Locked
Unlock all 1035 answers & explanations
What is a benefit of the use of a multi-cluster virtual warehouse?
Premium Solution Locked
Unlock all 1035 answers & explanations
In Snowflake's data security framework how does column-level security contribute to the protection of sens11Jve information? (Select TWO)
Premium Solution Locked
Unlock all 1035 answers & explanations
True or False: Some queries can be answered through the metadata cache and do not require an active Virtual Warehouse.
Premium Solution Locked
Unlock all 1035 answers & explanations
What is a key characteristic of Tjme Travel?
Premium Solution Locked
Unlock all 1035 answers & explanations
When unloading data, which file format will keep floating-point number column data without truncating it?
Premium Solution Locked
Unlock all 1035 answers & explanations
When sharing data 1n Snowflake, what privileges does a Provider need to grant along with a share? (Select TWO)
Premium Solution Locked
Unlock all 1035 answers & explanations
True or False: AWS Private Link provides a secure connection from the Customer's on-premise data center to the Snowflake.
Premium Solution Locked
Unlock all 1035 answers & explanations
Why would a Snowflake user load JSON data into a VARIANT column instead of a string column?
Premium Solution Locked
Unlock all 1035 answers & explanations
What is the MINIMUM Snowflake edition required to use object tagging?
Premium Solution Locked
Unlock all 1035 answers & explanations
Which command is used to unload data from a Snowflake table rnto a Snowflake stage?
Premium Solution Locked
Unlock all 1035 answers & explanations
Which of the following commands are not blocking operations? Choose 2 answers
Premium Solution Locked
Unlock all 1035 answers & explanations
How should a custom role hierarchy be designed?
Premium Solution Locked
Unlock all 1035 answers & explanations
A user is running queries that are starting to take too long.
Which metric should be checked in the Query Profile to determine if a full table scan was performed?
Premium Solution Locked
Unlock all 1035 answers & explanations
Which type of workload traditionally benefits from the use of the query acceleration service?
Premium Solution Locked
Unlock all 1035 answers & explanations
Which of the following connectors allow Multi-Factor Authentication (MFA) authorization when connecting? (Choose all that apply.)
Premium Solution Locked
Unlock all 1035 answers & explanations
What is the benefit of using a file format when loading semi-structured data?
Premium Solution Locked
Unlock all 1035 answers & explanations
What happens to event notifications that are received when an automated Snowpipe is paused?
Premium Solution Locked
Unlock all 1035 answers & explanations
How can staged files be removed during data loading once the files have loaded successfully?
Premium Solution Locked
Unlock all 1035 answers & explanations
In which layer of its architecture does Snowflake store its metadata statistics? Select one.
Premium Solution Locked
Unlock all 1035 answers & explanations
What can be shared when the property is set to = FALSE?
Premium Solution Locked
Unlock all 1035 answers & explanations
How can customer data be restricted by country for a global company using a multi-tenant environment?
Premium Solution Locked
Unlock all 1035 answers & explanations
Which security feature is available in all Snowflake editions?
Premium Solution Locked
Unlock all 1035 answers & explanations
True or False: Query ID's are unique across all Snowflake deployments and can be used in communication with Snowflake Support to help troubleshoot issues.
Premium Solution Locked
Unlock all 1035 answers & explanations
Which data types are supported as input for the FLATTEN function? (Select TWO).
Premium Solution Locked
Unlock all 1035 answers & explanations
When sharing data among multiple Snowflake accounts, what charges are incurred by a data consumer when viewing shared data using their own account?
Premium Solution Locked
Unlock all 1035 answers & explanations
What can be used to process unstructured data?
Premium Solution Locked
Unlock all 1035 answers & explanations
What is the default File Format used in the COPY command if one is not specified?
Premium Solution Locked
Unlock all 1035 answers & explanations
How doos the authorization associated with a pre-signed URL work for an unstructured file?
Premium Solution Locked
Unlock all 1035 answers & explanations
What is the MINIMUM Snowflake edition required to use a dedicated metadata store?
Premium Solution Locked
Unlock all 1035 answers & explanations
Which security models are used m Snowflake to manage access control? (Select TWO).
Premium Solution Locked
Unlock all 1035 answers & explanations
Which type of table corresponds to a single Snowflake session?
Premium Solution Locked
Unlock all 1035 answers & explanations
Which table type exists only within the session it was created and is only visible to the user who created it?
Premium Solution Locked
Unlock all 1035 answers & explanations
Which metrics in the QUERY HISTORY Account_ Usage V i e w can be used to assess the pruning efficiency of a query? (Select TWO).
Premium Solution Locked
Unlock all 1035 answers & explanations
This command is executed:

Premium Solution Locked
Unlock all 1035 answers & explanations
When loading data into Snowflake, the COPY command supports:
Choose 2 answers
Premium Solution Locked
Unlock all 1035 answers & explanations
Which commands extract the value for a key, key_ 1, from an object column? (Select TWO).
Premium Solution Locked
Unlock all 1035 answers & explanations
A size Small standard virtual Warehouse running in auto-suspend mode is used for a production Business Intelligence (Bl) reporting environment. The Bl reports generate quickly in the
early morning, but as the day progresses and there are more users, it takes longer to run the reports.
How can this situation be addressed?
Premium Solution Locked
Unlock all 1035 answers & explanations
Who can create and manage reader accounts? (Select TWO).
Premium Solution Locked
Unlock all 1035 answers & explanations
If auto-suspend is enable for a Virtual Warehouse, he Warehouse is automatically suspended when:
Premium Solution Locked
Unlock all 1035 answers & explanations
What step will help to reduce query queuing?
Premium Solution Locked
Unlock all 1035 answers & explanations
What data types can be used to store semi-structured data in Snowflake? (Select TWO).
Premium Solution Locked
Unlock all 1035 answers & explanations
Masking policies are created at what level in Snowflake?
Premium Solution Locked
Unlock all 1035 answers & explanations
True or False: Multi_Factor Authentication (MFA) in Snowflake is only supported in conjunction with single Sign-on (sso).
Premium Solution Locked
Unlock all 1035 answers & explanations
Which strategy will unload data into external stage subfolders based on the date and time information in the data?
Premium Solution Locked
Unlock all 1035 answers & explanations
How do the scaling policy parameters impact the performance of a Snowflake virtual warehouse?
Premium Solution Locked
Unlock all 1035 answers & explanations
What 1s the Fall-safe retention period for transient and temporary tables?
Premium Solution Locked
Unlock all 1035 answers & explanations
How a Snowpipe charges calculated?
Premium Solution Locked
Unlock all 1035 answers & explanations
Which constraint is enforced for standard Snowflake tables?
Premium Solution Locked
Unlock all 1035 answers & explanations
How does Snowflake ensure the integrity and consistency of data stored in tables?
Premium Solution Locked
Unlock all 1035 answers & explanations
What act1v1ties can a user with the ORGADMIN role perform? (Select TWO).
Premium Solution Locked
Unlock all 1035 answers & explanations
Which formats are supported for unloading data from Snowflake? Choose 2 answers
Premium Solution Locked
Unlock all 1035 answers & explanations
Which tool can be used to build data applications without moving the data outside of Snowflake?
Premium Solution Locked
Unlock all 1035 answers & explanations
When an ACCOUNTADMIN gives a user a custom role, what privilege or privileges is the user granted by default?
Premium Solution Locked
Unlock all 1035 answers & explanations
Which Query Profile operator 1s considered a DML operator?
Premium Solution Locked
Unlock all 1035 answers & explanations
Data storage for individual tables can be monitored using which commands and/or object(s)? Choose 2 answers
Premium Solution Locked
Unlock all 1035 answers & explanations
By default. when is a resource monitor reset to O?
Premium Solution Locked
Unlock all 1035 answers & explanations
How can a Data Exchange Administrator provide a user vvith account access to a Data Exchange?
Premium Solution Locked
Unlock all 1035 answers & explanations
What would cause different results to be returned when running the same query twice?
Premium Solution Locked
Unlock all 1035 answers & explanations
True or False: Fail-safe can be disabled within a Snowflake account.
Premium Solution Locked
Unlock all 1035 answers & explanations
What Snowflake service supports the ability to process data while accessing libraries and patterns in multiple computer languages?
Premium Solution Locked
Unlock all 1035 answers & explanations
Which Snowflake object supports the classification and management of sensitive data by associating metadata with database objects?
Premium Solution Locked
Unlock all 1035 answers & explanations
How does Snowflake utilize clustering information to improve query performance?
Premium Solution Locked
Unlock all 1035 answers & explanations
Account-level storage usage can be monitored via:
Premium Solution Locked
Unlock all 1035 answers & explanations
How should a user maintain empty strings while unloading data to a CSV format?
Premium Solution Locked
Unlock all 1035 answers & explanations
Which virtual Warehouse configuration requires the maximum number of clusters to be equal to the minimum number of clusters?
Premium Solution Locked
Unlock all 1035 answers & explanations
How does Snowflake use Multi-Factor Authentication (MFA)?
Premium Solution Locked
Unlock all 1035 answers & explanations
Which of the following statements is true of data loading? Select one.
Premium Solution Locked
Unlock all 1035 answers & explanations
What does Snowflake recommend be enforced for all users to MAXIMIZE user login security?
Premium Solution Locked
Unlock all 1035 answers & explanations
What is the default format-type COMPRESSION option when unloading CSV data from Snowflake using the COPY I NTO < l o c atio n > command?
Premium Solution Locked
Unlock all 1035 answers & explanations
What 1s 1t called when a customer managed key 1s combined with a Snowflake managed key to create a composite key for encryption?
Premium Solution Locked
Unlock all 1035 answers & explanations
True or False: A table in Snowflake can only be queried using the Virtual Warehouse that was used to load the data.
Premium Solution Locked
Unlock all 1035 answers & explanations
When should a user scale out a virtual warehouse instead of scaling up?
Premium Solution Locked
Unlock all 1035 answers & explanations
Match the security requirements on the left, with the Snowflake Continuous Data Protection feature on the right.
Instructions: Select the options from the list on the Jett, drag and put them onto the correct feature on the right.

A virtual warehouse query queuing time has been increasing due to a large number of users accessing the warehouse at the same time each day.
Which warehouse configurations would address this issue MOST cost-effectively? (Select TWO).
Premium Solution Locked
Unlock all 1035 answers & explanations
Which metadata table will store the storage ut11izat1on information even for dropped tables?
Premium Solution Locked
Unlock all 1035 answers & explanations
Which are true of Snowflake roles?
Premium Solution Locked
Unlock all 1035 answers & explanations
How does resizing a virtual warehouse affect Snowflake billing?
Premium Solution Locked
Unlock all 1035 answers & explanations
How can a Snowflake user access near real-time metrics that can be used to identify queries affected by disk spilling?
Premium Solution Locked
Unlock all 1035 answers & explanations
Which table function is used to perform additional processing on the results of a previously-run query?
Premium Solution Locked
Unlock all 1035 answers & explanations
What is the recommended Snowflake data type to store semi-structured data like JSON?
Premium Solution Locked
Unlock all 1035 answers & explanations
A standard Snowflake table has 200 GB of live data, with the Time Travel retention period set at 7 days. The size of the table has remained consistent over the past few months, but the storage costs have been increasing.
Which combination of steps should be taken to reduce the storage costs? {Select TWO).
Premium Solution Locked
Unlock all 1035 answers & explanations
What sequence of commands will unload data into a local directory?
Instructions: Select the options from the list on the left, drag and put them into the correct order on the right.

Which type of URL should be used to set an expiration time for accessing files in cloud storage?
Premium Solution Locked
Unlock all 1035 answers & explanations
Which command is used to remove files from either external cloud storage or an internal stage?
Premium Solution Locked
Unlock all 1035 answers & explanations
Full Question Bank Locked
You have reached the end of the free study guide preview. Upgrade now to unlock all 1035 questions and the full simulation engine.
Customer Reviews
Global Community Feedback
David M.
"The practice engine is incredible. It feels exactly like the real testing environment and helped me build so much confidence."
Sarah J.
"The PDF is very well organized and the explanations for the answers are actually helpful, not just random text."
Michael C.
"I was skeptical, but the content is high quality and definitely worth the price. I passed on my first try!"