雪花时区

发布于 2025-01-12 07:49:12 字数 158 浏览 1 评论 0原文

我对 Snowflake 的默认时区有一点疑问: 不同的区域是否包含不同的默认时区,或者无论哪个区域,所有区域的默认时区都相同吗? 也就是说,澳大利亚的 Snowflake 帐户的默认时区是美国时区,还是默认时区是澳大利亚时区?

如果您可以在您的答案中附上文档页以供参考,我们将不胜感激。

I am having a small doubt regarding the default time zone in Snowflake:
do different regions contain different default time zones, or is the default time zone the same for all, irrespective of the region?
That is, will a Snowflake account in Australia have a US time zone as its default, or will it have an Australian time zone as its default?

If you can attach a documentation page to your answer for reference, that would be appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浮光之海 2025-01-19 07:49:12

无论帐户位于何处,默认时区均设置为 America/Los_Angeles。

文档位于此处

Default timezone is set to America/Los_Angeles irrespective where the account is located.

Documentation is here

梦毁影碎の 2025-01-19 07:49:12

您可以使用 检查时区

SHOW PARAMETERS LIKE '%TIMEZONE' IN SESSION;

并更改会话的时区

ALTER SESSION SET TIMEZONE = 'Europe/Rome';

但是,对于不同的实用程序功能(Web UI 之外),我得到了不同的结果

SELECT localtime(), localtimestamp(), current_time(), current_timestamp(), sysdate(); 

在此处输入图像描述

You can check timezone with

SHOW PARAMETERS LIKE '%TIMEZONE' IN SESSION;

And change timezone for session with

ALTER SESSION SET TIMEZONE = 'Europe/Rome';

However I'm getting different result for different utility functions (outside Web UI)

SELECT localtime(), localtimestamp(), current_time(), current_timestamp(), sysdate(); 

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文