mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-06 00:28:52 +00:00
829 B
829 B
title | slug |
---|---|
Snowflake Troubleshooting Guide | OpenMetadata Support | /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:
(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
-
Log in to Snowflake using an account with administrative privileges.
-
Run the following SQL command to re-enable the user:
ALTER USER <username> SET DISABLED = FALSE;