Forum Discussion

amaaiia's avatar
amaaiia
Icon for Skilled Sharer rankSkilled Sharer
2 years ago
Solved

Unable to use a SQL Server connection with COPY (with Dataflow Gen2 it works correctly)

I have a 'C1' connection created for a SQL Server via on-premise Data gateway. From Dataflow Gen2 I can access to the data correctly, but when I try to use the same 'C1' connection from Data Pipeline...
  • Anonymous's avatar
    Anonymous
    2 years ago

    Hi amaaiia ,

     

    The error message "server endpoint's format is invalid" means that the server endpoint's format that you specified in the connection configuration is invalid and may be due to one of the following reasons:

    • The server name is in an incorrect format.
    • The included port number is in an incorrect format or is not required.
    • There are invalid characters in the server name.

     

    The following step to troubleshoot and resolve this issue:
    Check the server name format. Ensure that the server name is formatted correctly. In general, the server name format should be servername or servername\instance. If a port is specified, the format should be servername,port.
    Example: 

    Correct format:
    myserver
    myserver\instance
    myserver,1433
    Wrong format:
    myserver:1433

     

    I use the same configuration information in dataflow Gen2 and pipeline everything works fine.

    Best Regards,
    Adamk Kong

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.