hello Everybody, I use new version of talend (TOS 3.0.0). I would like to use the components about MS SQL SERVER database. So when i create db connection, that not work. Error message : "Connection failure. You must change the Database Settings. Network error IOException: Connection refused: connect" Please what i do?? thanks
Hi,
MSSQL needs to be configure to accept remote connection and also the firewall needs to allow traffic.
have a look at this page:
http://jtds.sourceforge.net/faq.html#connectionRefused this is the website for the project that develops MSSQL java driver.
In Sql Server Express 2008 try to : start - programs - microsoft sql server 2008 - configuaration tools - sql server configuration monitor - find the node ''protocols for..." and enable tcp-ip.
I have the same problem, with the same error Connection failure. You must change the Database Settings. Unable to get information from SQL Server: SERVERNAME I enable TCP/IP for MS SQL SERVER but not resolve. Via ODBC , i connected DB. But i have an unsopported future.
I left the schema field empty and added instance=<instanceName> in Additional Parameters.
The String of Connection should look like
jdbc:jtds:sqlserver://<server>:<port>/<database>;instance=<instanceName>
Hope it helps