Removing files from a stage after you are done loading the files improves performance when subsequently loading data
Removing files from a stage after you are done loading the files improves performance when subsequently loading dataA . TRUE B. FALSEView AnswerAnswer: A Explanation: Managing Unloaded Data Files Staged files can be deleted from a Snowflake stage using the REMOVE command to remove the files in the stage after...
How will you list all the object references of the view?
You have a view. How will you list all the object references of the view?A . GET_OBJECT_REFERENCES B. GET_VIEW_REFERENCES C. GET_VIEW_METADATAView AnswerAnswer: A Explanation: GET_OBJECT_REFERENCES Returns a list of objects that a specified object references. Input is currently limited to the name of a view. https://docs.snowflake.com/en/sql-reference/functions/get_object_references.html#get-object-references ------------------------------------------------------------------------------------------------------------- Please do the...
The query profile looks as below. If you would like to further tune the query, what is the best thing to do?
You ran a query and the query SELECT * FROM inventory WHERE BIBNUMBER = 2805127; The query profile looks as below. If you would like to further tune the query, what is the best thing to do? A . Execute the below query to enable auto clustering B. alter table...
If you run the below commands in your worksheet, what will happen?
If you run the below commands in your worksheet, what will happen? CREATE TEMP TABLE STUDENT_TABLE(STUID NUMBER, COURSE VARCHAR); CREATE TABLE STUDENT_TABLE_CLONE CLONE STUDENT_TABLE;A . A temporary table will be created with name as STUDENT_TABLE. The clone will create a clone of the STUDENT_TABLE B. Only the STUDENT_TABLE_CLONE will be...
Choose the different ways that you have to optimize query performance
Choose the different ways that you have to optimize query performanceA . Clustering a table B. Creating one or more materialized views C. Search Optimization D. VacuumingView AnswerAnswer: A,B,C Explanation: Please note that search optimization is still in preview mode. But this will be a powerful feature to optimize your...
What datatype Snowflake will use for EMPLOYEE_ID?
You have created a table as below CREATE TABLE EMPLOYEE(EMPLOYEE_ID NUMBER, EMPLOYEE_NAME VARCHAR); What datatype Snowflake will use for EMPLOYEE_ID?A . FIXED B. INTEGER C. NUMBERView AnswerAnswer: A Explanation: Please try this for yourself. Note that this advanced certification requires working experience, so some of these hands-on will help in...
Which command will you run to list all privileges and roles granted to the role
Which command will you run to list all privileges and roles granted to the roleA . SHOW GRANTS TO ROLE <ROLE NAME> B. SHOW GRANTS ON ROLE <ROLE NAME> C. SHOW GRANTS OF ROLE <ROLE NAME> D. SHOW GRANTS FOR ROLE <ROLE NAME>View AnswerAnswer: A Explanation: Variants SHOW GRANTS ON...
USERADMIN and Security administrators (i.e. users with the SECURITYADMIN role) or higher can create roles.
USERADMIN and Security administrators (i.e. users with the SECURITYADMIN role) or higher can create roles.A . TRUE B. FALSEView AnswerAnswer: A Explanation: ACCOUNTADMIN (aka Account Administrator) Role that encapsulates the SYSADMIN and SECURITYADMIN system-defined roles. It is the top-level role in the system and should be granted only to a...
During a database cloning, if a SNOWPIPE is cloned with a fully qualified table in the COPY statement in the pipe definition (in the form of db_name.schema_name.table_name or schema_name.table_name), then what will happen?
During a database cloning, if a SNOWPIPE is cloned with a fully qualified table in the COPY statement in the pipe definition (in the form of db_name.schema_name.table_name or schema_name.table_name), then what will happen?A . Snowpipe loads duplicate data into the source table B. Data loading will fail when the snowpipe...
By executing the 'SHOW TABLES' command, we can list all the tables in all the schemas even if we do not have access to all the tables
By executing the 'SHOW TABLES' command, we can list all the tables in all the schemas even if we do not have access to all the tablesA . TRUE B. FALSEView AnswerAnswer: B Explanation: SHOW TABLES Lists the tables for which you have access privileges, including dropped tables that are...