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.
SNOWFLAKE_LEARNING 环境包括预置的角色 (SNOWFLAKE_LEARNING_ROLE)、计算仓库 (SNOWFLAKE_LEARNING_WH) 和数据库 (SNOWFLAKE_LEARNING_DB)。
To opt out of the learning environment before the change is enabled:
SELECT SYSTEM$DISABLE_SNOWFLAKE_LEARNING_ENVIRONMENT();
要在启用学习环境后将其禁用和删除,请执行以下操作:
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;
有关更多信息,请参阅 Snowsight 中的模板。
Ref: 1992, 2159