High severityexecution
Power BI Refresh Error:
090164
What does this error mean?
Snowflake automatically paused a Snowpipe because it encountered repeated errors, preventing further auto-ingest events from being processed.
Common causes
- 1The target table schema does not match the incoming file format, causing repeated COPY failures
- 2The pipe accumulated a backlog of failed files that triggered Snowflake's auto-pause safeguard
- 3The cloud notification queue credentials expired, causing repeated authentication failures
- 4The stage referenced by the pipe was dropped or its permissions were revoked
How to fix it
- 1Step 1: Check the pipe status: SELECT SYSTEM$PIPE_STATUS('pipe_name') to confirm it is paused and see the last error.
- 2Step 2: Query COPY_HISTORY() to find which files failed and what error they returned.
- 3Step 3: Fix the root cause (schema mismatch, file format issue, or permissions).
- 4Step 4: Resume the pipe: ALTER PIPE pipe_name SET PIPE_EXECUTION_PAUSED = false.
- 5Step 5: Use ALTER PIPE pipe_name REFRESH to reprocess any files that arrived while the pipe was paused.