High severityconnection
Power BI Refresh Error:
53
What does this error mean?
The SQL Server cannot be reached via Named Pipes — the network path does not exist or Named Pipes is not enabled.
Common causes
- 1Named Pipes protocol is disabled on the SQL Server
- 2The server name in the connection string resolves to a different machine
- 3SQL Server Browser service is stopped, preventing instance name resolution
How to fix it
- 1Step 1: Enable Named Pipes (or switch to TCP/IP): SQL Server Configuration Manager → SQL Server Network Configuration → Protocols for <instance> → enable Named Pipes or TCP/IP.
- 2Step 2: Ensure SQL Server Browser is running if using named instances: SQL Server Configuration Manager → SQL Server Services → SQL Server Browser → Start.
- 3Step 3: Prefer TCP/IP over Named Pipes for remote connections — add 'tcp:' prefix to the server name in the connection string or explicitly set port: server,1433.
Frequently asked questions
Official documentation: https://learn.microsoft.com/en-us/sql/database-engine/configure-windows/enable-or-disable-a-server-network-protocol