Doc: Snowflake Troubleshooting Section (#21066)

This commit is contained in:
Rounak Dhillon 2025-05-02 14:53:18 +05:30 committed by GitHub
parent f90133d7a3
commit 70a23502f9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 66 additions and 0 deletions

View File

@ -4,3 +4,25 @@ slug: /connectors/database/snowflake/troubleshooting
---
{% partial file="/v1.6/connectors/troubleshooting.md" /%}
# Snowflake User Access Disabled
If you encounter the following error when attempting to connect to a Snowflake database:
```yaml
(snowflake.connector.errors.DatabaseError) 250001 (08001): None: Failed to connect to DB: <your-account>.snowflakecomputing.com:443. User access disabled. Contact your local system administrator.
```
This indicates that the Snowflake user account used for the connection has been **disabled**.
### Resolution
1. **Log in to Snowflake** using an account with administrative privileges.
2. Run the following SQL command to re-enable the user:
```sql
ALTER USER <username> SET DISABLED = FALSE;
```

View File

@ -4,3 +4,25 @@ slug: /connectors/database/snowflake/troubleshooting
---
{% partial file="/v1.7/connectors/troubleshooting.md" /%}
## Snowflake User Access Disabled
If you encounter the following error when attempting to connect to a Snowflake database:
```yaml
(snowflake.connector.errors.DatabaseError) 250001 (08001): None: Failed to connect to DB: <your-account>.snowflakecomputing.com:443. User access disabled. Contact your local system administrator.
```
This indicates that the Snowflake user account used for the connection has been **disabled**.
### Resolution
1. **Log in to Snowflake** using an account with administrative privileges.
2. Run the following SQL command to re-enable the user:
```sql
ALTER USER <username> SET DISABLED = FALSE;
```

View File

@ -4,3 +4,25 @@ slug: /connectors/database/snowflake/troubleshooting
---
{% partial file="/v1.8/connectors/troubleshooting.md" /%}
## Snowflake User Access Disabled
If you encounter the following error when attempting to connect to a Snowflake database:
```yaml
(snowflake.connector.errors.DatabaseError) 250001 (08001): None: Failed to connect to DB: <your-account>.snowflakecomputing.com:443. User access disabled. Contact your local system administrator.
```
This indicates that the Snowflake user account used for the connection has been **disabled**.
### Resolution
1. **Log in to Snowflake** using an account with administrative privileges.
2. Run the following SQL command to re-enable the user:
```sql
ALTER USER <username> SET DISABLED = FALSE;
```