将账户从 Worksheets 默认设置为 Workspaces

从 2025 年 9 月开始,Snowflake 将逐步将默认账户从 Worksheets 改为 Workspaces。

CohortTiming of change
New organizationsCurrently available to some new customers
On Demand accountsGradual rollout begins in September
Organizations with only Standard Edition accountsGradual rollout begins in September
Organizations with only Enterprise Edition and below accountsGradual rollout begins in late October
Organizations with only Business Critical Edition and below accountsGradual rollout begins in November
Organizations with Virtual Private Snowflake (VPS) and below accountsGradual rollout begins in January 2026

Note

从 2025 年 9 月开始,Classic Console 用户将升级到 Workspaces。

Before the change:

Worksheets 是 Snowflake 中的默认 SQL 编辑体验。

After the change:

Workspaces 是 Snowflake 中的默认 SQL 编辑体验。打开工作表将在 Workspaces 编辑器中将其打开,Worksheets 的导航选项将替换为 Workspaces。目前,用户仍然可以从 Workspaces 中导航回原始 Worksheets 编辑器,或自行恢复默认值。

To set Workspaces as the account-wide default editor for all users from Snowsight, follow these steps:

  1. Sign in to Snowsight as ACCOUNTADMIN.

  2. In the lower-left corner, select your name » Settings.

  3. Under Account, choose General.

  4. Enable the Set Workspaces as default SQL editor for the account option.

    Administrators can revert to Worksheets as the default editor by disabling this option. If users want to revert to Worksheets, they can also select Go to Worksheets from the Workspaces UI:

    Select ellipsis menu and select Go to Worksheets

    Or toggle the user setting in the Workspaces editor:

    Use Workspaces as the default SQL editor

Administrators have several options for managing this transition by setting the USE_WORKSPACES_FOR_SQL parameter.

要为所有用户将账户范围的默认编辑器设置为 Workspaces,请执行以下操作:

ALTER ACCOUNT SET USE_WORKSPACES_FOR_SQL = 'always';

要恢复此设置并使用以前的默认编辑器,但遵循任何 Snowflake 托管 BCR,这使得 Workspaces 成为默认设置:

ALTER ACCOUNT UNSET USE_WORKSPACES_FOR_SQL;

恢复到以前的编辑器并暂时忽略任何 Snowflake 托管 BCR,这使得 Workspaces 成为默认设置:

ALTER ACCOUNT SET USE_WORKSPACES_FOR_SQL = 'never';

Note

Worksheets 最终将被弃用,上面的命令将不再起作用。如果您之前设置了此参数,则在弃用 Worksheets 后,该参数将自动清除。当弃用日期可用时,Snowflake 将提前通知。

For more information on Workspaces, see Workspaces.

参考:2117, 2075