Forum Discussion
ian2x4b523p
1 year agoRegular Visitor
Copy activity from on-prem to Fabric SQL Database
Hello I'm trying to run a copy activity in a Fabric pipeline to copy data from an on-prem SQL server to a Fabric SQL database via the on-premise data gateway. It's failing with the standard SQL erro...
- 1 year ago
The copy activity fails because the gateway VM cannot reach Fabric SQL Database—outbound port 1433 is blocked.
Fix:
Open TCP port 1433 outbound on the gateway.
Allow access to *.database.windows.net, *.sql.azuresynapse.net, and regional Fabric SQL endpoints.
Once done, the copy activity should work.
Shahid12523
Community Champion
1 year agoThe copy activity fails because the gateway VM cannot reach Fabric SQL Database—outbound port 1433 is blocked.
Fix:
Open TCP port 1433 outbound on the gateway.
Allow access to *.database.windows.net, *.sql.azuresynapse.net, and regional Fabric SQL endpoints.
Once done, the copy activity should work.
- ian2x4b523p1 year agoRegular Visitor
thank you