Correct Answer : USE WAREHOUSE COMPUTE_WH_XL;
Explanation :
A session context in Snowflake consists of 4 objects:
* Role
* Warehouse
* Database
* Schema
You can set appropriate session context using a set of SQL statements given below. These statements specify the role, warehouse, database, or schema to use for the current session:
You can set appropriate session context using a set of SQL statements given below. These statements specify the role, warehouse, database, or schema to use for the current session:
Use warehouse <<warehouse-name>>
Use role <<role-name>>
Use database <<database-name>>
Use schema <<schema-name>>
So the correct answer of this question is:
Use warehouse COMPUTE_WH_XL;