SAP ASE issues error message 11206 when you cannot access a remote server.
11206 Unable to connect to server server_name.
The message is preceded by one of these Client-Library messages:
11206 Unable to connect to server server_name.
When a remote server is added using sp_addserver, the interfaces file is not checked. It is checked the first time you try to make a connection to the remote server. To correct this problem, add the remote server to the interfaces file that is being used by Component Integration Services.
Driver call to connect two endpoints failed 11206 Unable to connect to server server_name.
These first two steps are important to ensure that the test environment is the same environment that Component Integration Services was using when you could not connect to the remote server.
If the environment is set up correctly and the connection fails, continue through this list. If the connection is made, there is a problem with the environment being used by Component Integration Services.
Login failed 11206 Unable to connect to server server_name.
exec sp_helpexternlogin server_name
If no external login is defined, Component Integration Services uses the user login name and password that was used to connect to SAP ASE. For example, if the user connected to SAP ASE using the “sa” account, Component Integration Services uses the login name “sa” when making a remote connection. Unless the remote server is another SAP ASE, the “sa” account probably does not exist, and an external login must be added using sp_addexternlogin.
If an external login is defined, verify that the user’s login name is correct. Remote server logins are case sensitive.Is the case correct for the user login name you are using and the entry in externlogins?
exec sp_dropexternlogin server_name, login_name go exec sp_addexternlogin server_name, login_name, remote_login, remote_password go