mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-12-05 03:54:23 +00:00
Doc: Snowflake Troubleshooting Section (#21066)
This commit is contained in:
parent
f90133d7a3
commit
70a23502f9
@ -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;
|
||||
```
|
||||
|
||||
@ -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;
|
||||
```
|
||||
|
||||
@ -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;
|
||||
```
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user