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