-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
connecting to azure snowflake on osx #9
Comments
I encountered the same problem. A solution would be appreciated! I am using a snowflake instance in |
Response from Snowflake: The issue is that the dplyr connector has not been updated to reflect the new lists of regions we've added since the last cut. We will likely deprecate that parameter to keep this easier going forward. Could you add the following to your connection: host = ".east-us-2.snowflakecomputing.com" It would look something like this: my_db <- src_snowflakedb(user = "test-user", password = "password", account = "myaccount", host = ".east-us-2.snowflakecomputing.com", opts = list(warehouse = "dba_wh", db = "sales", schema = "public")) I tested that syntax and it worked whereas before it did not. |
Which seems to work. |
So in my case it would be something like:
Unfortenately that still doesn't work for me. |
I didn't set the account name right. Now it works! |
I'm unable to connect to snowflake using the example given:
Error I get:
Using:
Possibly relevant, I'm using a snowflake instance in
east-us-2.azure
The text was updated successfully, but these errors were encountered: