Power BI/Tableau 的雪花连接问题
也许是一个新手问题,但这是我第一次尝试从 BI 工具连接到 Snowflake。 我在 Snowflake 上创建了 30 个试用帐户(与任何组织无关),并尝试从 Power BI 和 Tableau (Desktop) 进行连接,但在插入凭据后收到登录错误。 来自 Power BI:
详细信息:“ODBC:错误 [HY000] [微软][雪花] (4) URL 的 REST 请求https://app.snowflake.com:443/session/v1/login-request?requestId=5fc2d087-7791-4094-85ae-a 10f6712b1f2&request_guid=96ad6779-8c15-4e2d-8b19-7878d60e314d&warehouse=COMPUTE_WH失败:HTTP 错误(http 错误)- code=405。
来自 Tableau:
*与 Snowflake 通信时发生错误 用户名或密码无效。 错误代码:2438FAD7 [雪花][雪花] (4) URL https://app.snowflake.com:443/session/v1/login-request?requestId=dec8ccd1-0d44-4f70-ba3c-a7da258b3cb1&request_guid=7da8e38a-926e-46af-9933-241556e11a05 的 REST 请求失败:HTTP错误(http错误)-代码=405。 *
我使用 app.snowflake.com 作为服务器,并使用我的用户名和密码作为凭据。 该用户具有 ACCOUNTADMIN 角色。 我尝试用谷歌搜索该错误,但没有成功。 有人知道我做错了什么吗?
maybe a newbie question, but it's the first time I'm trying to connect to Snowflake from a BI tool.
I created a 30 trial account on Snowflake (not related to any organization) and trying to connect from both Power BI and Tableau (Desktop), but I receive a login error after inserting the credentials.
From Power BI:
Details: "ODBC: ERROR [HY000] [Microsoft][Snowflake] (4)
REST request for URL https://app.snowflake.com:443/session/v1/login-request?requestId=5fc2d087-7791-4094-85ae-a10f6712b1f2&request_guid=96ad6779-8c15-4e2d-8b19-7878d60e314d&warehouse=COMPUTE_WH failed: HTTP error (http error) - code=405.
From Tableau:
*An error occurred while communicating with Snowflake
Invalid username or password.
Error Code: 2438FAD7
[Snowflake][Snowflake] (4)
REST request for URL https://app.snowflake.com:443/session/v1/login-request?requestId=dec8ccd1-0d44-4f70-ba3c-a7da258b3cb1&request_guid=7da8e38a-926e-46af-9933-241556e11a05 failed: HTTP error (http error) - code=405.
*
I am using app.snowflake.com as the server, and my username and passwords as the credentials.
The user is has an ACCOUNTADMIN role.
I've tried to google the error but without luck.
Does someone has any clue what I am doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当您创建 ODBC 或任何连接时,服务器会包含整个 URL,如下例所示。
When you are creating the ODBC or any connection, as the server include the whole URL as example below.
使用的 URL 不正确,因为 app.snowflake.com 是 Snowsight 应用程序的 URL,它不是任何 3rd 方应用程序到 Snowflake 的入口点。
PowerBI 的正确 URL 应采用以下格式:
“account-identifier”.snowflakecomputing.com 或者如果使用无区域格式,则为:“org-name”-“acct-name”.snowflakecomputing.com
帐户标识符信息位于:https://docs.snowflake.com/en/user-guide/admin-account-identifier.html#account-identifier-formats-by-cloud-platform-and-region
The url used is incorrect since app.snowflake.com is the URL for Snowsight application, it is not the entry point for any 3rd party application to Snowflake.
The correct URL for PowerBI would be in the following format:
"account-identifier".snowflakecomputing.com or if using the regionless format, then it would be : "org-name"-"acct-name".snowflakecomputing.com
Account identifier information is here: https://docs.snowflake.com/en/user-guide/admin-account-identifier.html#account-identifier-formats-by-cloud-platform-and-region