Snowsight Templates learning environment

This behavior change will be enabled during the windows between December 2 - December 17, 2025 and January 7 - January 16, 2026. During this time, the dedicated Snowflake learning environment (SNOWFLAKE_LEARNING) is enabled automatically. This environment is required for Snowsight Templates, which let users interactively explore Snowflake features and use cases through workspaces, notebooks, or Streamlit apps that they can run. Templates come preconfigured with sample data and the necessary permissions.

The SNOWFLAKE_LEARNING environment includes a pre-provisioned role (SNOWFLAKE_LEARNING_ROLE), compute warehouse (SNOWFLAKE_LEARNING_WH), and database (SNOWFLAKE_LEARNING_DB).

To opt out of the learning environment before the change is enabled:

SELECT SYSTEM$DISABLE_SNOWFLAKE_LEARNING_ENVIRONMENT();
Copy

To disable and drop the learning environment after it is enabled:

USE ROLE ACCOUNTADMIN;
SELECT SYSTEM$DISABLE_SNOWFLAKE_LEARNING_ENVIRONMENT();

-- DATABASE
SHOW DATABASES LIKE 'SNOWFLAKE_LEARNING_DB';
DROP DATABASE SNOWFLAKE_LEARNING_DB;

-- WAREHOUSE
SHOW WAREHOUSES LIKE 'SNOWFLAKE_LEARNING_WH';
DROP WAREHOUSE SNOWFLAKE_LEARNING_WH;

-- ROLE
SHOW ROLES LIKE 'SNOWFLAKE_LEARNING_ROLE';
DROP ROLE SNOWFLAKE_LEARNING_ROLE;
Copy

For more information, see Templates in Snowsight.

Ref: 1992, 2159