Celoxis JDBC Probe is a java program that helps to understand connection issues with your database server.
...
Understanding the Error Messages
Common errors for Oracle
ERROR MESSAGE | POSSIBLE CAUSES |
---|---|
The Network Adapter could not establish the connection |
|
Invalid username/password; logon denied | Username or password is incorrect |
Connection refused(DESCRIPTION=(TMP=) (VSNNUM=153092352)(ERR=12505) (ERROR_STACK=(ERROR=(CODE=12505)(EMFI=4)))) |
|
FAILURE: Listener refused the connection with the following error: ORA-12505, TNS:listener does not currently know of SID given in connect descriptor. [java.sql.SQLException] | One of the parameter you are passing is incorrect or the database does not exist using the connection properties you are specifying. |
Common errors for MSSQL
ERROR MESSAGE | POSSIBLE CAUSES |
---|---|
Error establishing socket. |
|
Login failed for user | Username or password is incorrect. |
Cannot open database requested in login |
|
Not Associated with a trusted SQL Server Connection | This occurs typically when Microsoft Sql Server installation is configured to use only Windows authentication and not SQL Server authentication. To solve the problem: Change the Authentication change the authentication mode to sql server authentication. |
The TCP/IP port is disabled or not accepting connections |
Also, check that the firewall is not blocking the connection. |
...