raxz
raxz

Reputation: 1

i have problem connceting snowsql to snowflake its showing error

C:\Users\raxz>snowsql -a dr61159.ap-southeast-1.aws -u raxz
Password:
250001 (n/a): Could not connect to Snowflake backend after 0 attempt(s).Aborting
If the error message is unclear, enable logging using -o log_level=DEBUG and see the log to find out the cause. Contact support for further help.
Goodbye!

can any one help me thanks raxz

Upvotes: 0

Views: 350

Answers (1)

Srinath Menon
Srinath Menon

Reputation: 1650

The issue is with the account value being used. It should not have .aws. Here is the correct account value for your case:

C:\Users\raxz>snowsql -a dr61159.ap-southeast-1 -u raxz

The account identifiers details are mentioned here in the following documentation:

https://docs.snowflake.com/en/user-guide/admin-account-identifier.html#non-vps-account-locator-formats-by-cloud-platform-and-region

Upvotes: 1

Related Questions