Power BI Refresh Error:
ADF Pipeline Error 2200
What does this error mean?
Error code 2200 (UserErrorOdbcOperationFailed) occurs when an ODBC-based copy activity in Azure Data Factory fails due to an invalid operation, bad query, or misconfigured ODBC connection. This is a general copy activity error that can surface across multiple connectors.
Common causes
- 1Incorrect or unsupported SQL/query syntax sent via the ODBC driver
- 2Misconfigured ODBC connection string or missing DSN on the Self-hosted Integration Runtime node
- 3ODBC driver version mismatch or missing driver installation on the IR machine
- 4Insufficient permissions for the ODBC user account to execute the requested operation
How to fix it
- 1Step 1: Review the full error message in the ADF activity run details to identify the specific ODBC driver error code and message beneath error 2200.
- 2Step 2: Verify the ODBC connection string and DSN configuration on the Self-hosted Integration Runtime machine using the ODBC Data Source Administrator tool.
- 3Step 3: Confirm the correct ODBC driver version is installed on the IR node and matches the bitness (32-bit vs 64-bit) of the Integration Runtime.
- 4Step 4: Test the query or stored procedure independently using a local ODBC client to rule out syntax or permission issues.
- 5Step 5: Check that the ODBC user account has the necessary read/write permissions on the target data source, and update linked service credentials if needed.