Which SQL command sets the current warehouse for a Snowflake session?
USE WAREHOUSE <warehouse_name>; specifies the active/current virtual warehouse for the session. Snowflake documents this command specifically for setting or changing the warehouse in use by a session.
USE WAREHOUSE <warehouse_name>;
Community Discussion