100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached 4.2 TrustPilot
logo-home
Exam (elaborations)

Snowflake Snow Pro Certification Exam Questions with Solutions

Rating
-
Sold
-
Pages
16
Grade
A+
Uploaded on
31-01-2025
Written in
2024/2025

Snowflake Snow Pro Certification Exam Questions with Solutions Partitioning Snowflake manages micro-partitions and clustering under the hood. These tasks are performed automatically by Snowflake and thus there are no action items for developers to take. If you find that you do need additional query speed, you can manipulate the cluster keys for micropartitions using the ALTER TABLE ... CLUSTER BY () command. Clustering Keys & Clustered Tables In general, Snowflake automatically produces well-clustered data in tables; however, over time, particularly as DML occurs on very large tables (as defined by the amount of data in the table, not the number of rows), the data in some table rows may no longer cluster optimally on desired dimensions. Snowflake supports addressing this issue by allowing the architect to designate one or more table columns/expressions as a clustering key for the table. You should only consider over-riding Snowflake's default clustering approach, for tables which are more than 2 TB in size. True or False: A single database can exist in more than one Snowflake account. FALSE Which of the following roles is recommended to be used to create and manage users and roles? ACCOUNTADMIN To run a Multi-Cluster Warehouse in auto-scale mode, a user would: Set the Minimum Clusters and Maximum Clusters settings to the different values Scaling Policy Types Standard and Economy Which of the following objects is not covered by Time Travel? - Tables - Schemas - Databases - Stages Stages When can a Virtual Warehouse start running queries? - 12am-5am - Only during administrator defined time slots - When its provisioning is complete - After replication Only during administrator defined time slots True or False: Pipes can be suspended and resumed. FALSE As best practice, clustering keys should only be defined on tables of which minimum size? - Multi-Kilobyte (KB) range - Multi-Megabyte (MB) range - Multi-Gigabyte (GB) range - Multi-Terabyte (TB) range Multi-Terabyte (TB) range Which is the lowest Snowflake edition that offers time travel up to 90 days? Enterprise Edition True or False: A third-party tool that supports standard JDBC or ODBC but has no Snowflake-specific driver will be unable to connect to Snowflake. TRUE Which of the following objects can be cloned: - Tables - Named File Formats - Schemas - Shares - Databases - Users - Tables - Schemas - Databases - Users Which of the following commands are not blocking operations? - UPDATE - INSERT - MERGE - COPY - INSERT - COPY True or False: Bulk unloading of data from Snowflake supports the use of a SELECT statement. FALSE True or False: A table in Snowflake can only be queried using the Virtual Warehouse that was used to load the data. FALSE What parameter controls if the Virtual warehouse starts immediately after the CREATE WAREHOUSE statement? - INITIALLY_SUSPENDED = TRUE/FALSE - START_AFTER_CREATE = TRUE/FALSE - START_TIME = 60 // (seconds from now) - START_TIME = CURRENT_DATE() INITIALLY_SUSPENDED = TRUE/FALSE Which of the following statements would be used to export/unload data from Snowflake? - COPY INTO @stage - EXPORT TO @stage - INSERT INTO @stage - EXPORT_TO_STAGE(stage = > @Wage, select = > 'select * from t1); COPY INTO @stage Which of the following statements about data sharing are true? choose 2 answers - New objects created by a Data Provider are automatically shared with existing Data Consumers & Reader Accounts - All database objects can be included In a shared database - Reader Accounts are created and funded by Data Prowlers - Shared databases are read-only - Reader Accounts are created and funded by Data Prowlers - Shared databases are read-only On which of the following cloud platform can a Snowflake account be hosted? Choose 2 answers - Amazon Web Services - Private Virtual Cloud - Oracle Cloud - Microsoft Azure Cloud - Amazon Web Services - Microsoft Azure Cloud True or False: Each worksheet in the Snowflake Web Interface (UI) can be associated with different roles, databases, schemas, and Virtual Warehouses. TRUE

Show more Read less
Institution
Snowflake
Course
Snowflake










Whoops! We can’t load your doc right now. Try again or contact support.

Written for

Institution
Snowflake
Course
Snowflake

Document information

Uploaded on
January 31, 2025
Number of pages
16
Written in
2024/2025
Type
Exam (elaborations)
Contains
Questions & answers

Subjects

Content preview

Snowflake Snow Pro Certification Exam
Questions with Solutions

Partitioning - answer Snowflake manages micro-partitions and clustering under the
hood. These tasks are performed automatically by Snowflake and thus there are no
action items for developers to take.
If you find that you do need additional query speed, you can manipulate the cluster keys
for micro partitions using the ALTER TABLE ... CLUSTER BY () command.

Clustering Keys & Clustered Tables - answer In general, Snowflake automatically
produces well-clustered data in tables; however, over time, particularly as DML occurs
on very large tables (as defined by the amount of data in the table, not the number of
rows), the data in some table rows may no longer cluster optimally on desired
dimensions.

Snowflake supports addressing this issue by allowing the architect to designate one or
more table columns/expressions as a clustering key for the table. You should only
consider over-riding Snowflake's default clustering approach, for tables which are more
than 2 TB in size.

True or False: A single database can exist in more than one Snowflake account. -
answerFALSE

Which of the following roles is recommended to be used to create and manage users
and roles? - answerACCOUNTADMIN

To run a Multi-Cluster Warehouse in auto-scale mode, a user would: - answerSet the
Minimum Clusters and Maximum Clusters settings to the different values

Scaling Policy Types - answerStandard and Economy

Which of the following objects is not covered by Time Travel?
- Tables
- Schemas
- Databases
- Stages - answerStages

When can a Virtual Warehouse start running queries?
- 12am-5am
- Only during administrator defined time slots
- When its provisioning is complete

,- After replication - answerOnly during administrator defined time slots

True or False: Pipes can be suspended and resumed. - answerFALSE

As best practice, clustering keys should only be defined on tables of which minimum
size?
- Multi-Kilobyte (KB) range
- Multi-Megabyte (MB) range
- Multi-Gigabyte (GB) range
- Multi-Terabyte (TB) range - answerMulti-Terabyte (TB) range

Which is the lowest Snowflake edition that offers time travel up to 90 days? -
answerEnterprise Edition

True or False: A third-party tool that supports standard JDBC or ODBC but has no
Snowflake-specific driver will be unable to connect to Snowflake. - answerTRUE

Which of the following objects can be cloned:
- Tables
- Named File Formats
- Schemas
- Shares
- Databases
- Users - answer- Tables
- Schemas
- Databases
- Users

Which of the following commands are not blocking operations?
- UPDATE
- INSERT
- MERGE
- COPY - answer- INSERT
- COPY

True or False: Bulk unloading of data from Snowflake supports the use of a SELECT
statement. - answerFALSE

True or False: A table in Snowflake can only be queried using the Virtual Warehouse
that was used to load the data. - answerFALSE

What parameter controls if the Virtual warehouse starts immediately after the CREATE
WAREHOUSE statement?
- INITIALLY_SUSPENDED = TRUE/FALSE
- START_AFTER_CREATE = TRUE/FALSE
- START_TIME = 60 // (seconds from now)

, - START_TIME = CURRENT_DATE() - answerINITIALLY_SUSPENDED =
TRUE/FALSE

Which of the following statements would be used to export/unload data from
Snowflake?
- COPY INTO @stage
- EXPORT TO @stage
- INSERT INTO @stage
- EXPORT_TO_STAGE(stage = > @Wage, select = > 'select * from t1); - answerCOPY
INTO @stage

Which of the following statements about data sharing are true? choose 2 answers
- New objects created by a Data Provider are automatically shared with existing Data
Consumers & Reader Accounts
- All database objects can be included In a shared database
- Reader Accounts are created and funded by Data Prowlers
- Shared databases are read-only - answer- Reader Accounts are created and funded
by Data Prowlers
- Shared databases are read-only

On which of the following cloud platform can a Snowflake account be hosted? Choose 2
answers
- Amazon Web Services
- Private Virtual Cloud
- Oracle Cloud
- Microsoft Azure Cloud - answer- Amazon Web Services
- Microsoft Azure Cloud

True or False: Each worksheet in the Snowflake Web Interface (UI) can be associated
with different roles, databases, schemas, and Virtual Warehouses. - answerTRUE

What services does Snowflake automatically provide for customer that they may have
been responsible for with their on premise system? Select all the below that apply.
- Installing and configuring hardware
- Patching software
- Physical security
- Maintaining metadata and statists - answer- Patching software
- Maintaining metadata and statists

What is the maximum compressed row size in Snowflake?
- 8KB
- 16MB
- 50MB
- 4000GB - answer16MB

Get to know the seller

Seller avatar
Reputation scores are based on the amount of documents a seller has sold for a fee and the reviews they have received for those documents. There are three levels: Bronze, Silver and Gold. The better the reputation, the more your can rely on the quality of the sellers work.
julianah420 Phoenix University
View profile
Follow You need to be logged in order to follow users or courses
Sold
658
Member since
3 year
Number of followers
324
Documents
34114
Last sold
1 week ago
NURSING,TESTBANKS,ASSIGNMENT,AQA AND ALL REVISION MATERIALS

On this page, you find all documents, package deals, and flashcards offered by seller julianah420

4.3

149 reviews

5
101
4
20
3
8
2
5
1
15

Recently viewed by you

Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Frequently asked questions