Forum Discussion

CeeVee33's avatar
CeeVee33
Advocate II
1 year ago
Solved

On-premises Gateway for SQL Server Instance

Hi Experts   I'm looking to create a connection to an On-Premise instance of SQL server from the On-Premise Data Gateway.   So the SQL Server sits on a server ABC_PRD_000560 and it is an instance...
  • v-hashadapu's avatar
    v-hashadapu
    1 year ago

    Hi CeeVee33 , Thank you for reaching out to the Microsoft Community Forum.

     

    Please consider below:

    1. Ensure TCP/IP is enabled for the SQL Server instance in SQL Server Configuration Manager. Since you mentioned limited access, request your database administrator (DBA) to verify this.
    2. Test Connectivity from the Gateway Server. the port may be blocked by a firewall or network policy. Also, Ensure SQL Server is configured to allow remote connections.
    3. Ensure the SQL Server Browser Service is running, as it helps resolve named instances to their correct ports. If this service is stopped, one may not find the instance unless a static port is used.
      SQL Server Browser service
    4. Named instances use dynamic ports by default, meaning the port can change. Ask your DBA to find the current port. If possible, configure a static port and ensure the firewall allows inbound traffic on that port.
      Configure SQL Server to listen on a specific TCP port
    5. If using a dynamic port, find the actual port using SQL Server Configuration Manager or DBA. Connect using ServerName,PortNumber to bypass SQL Server Browser.

    If this helped solve the issue, please consider marking it 'Accept as Solution' so others with similar queries may find it more easily. If not, please share the details, always happy to help.
    Thank you.