Are there any tools to test/validate the ODBC connection to an Oracle database if the Control-M/Enterprise Manager install fails and is unable to connect? |
Download and extract the utility attached to this solution article to a temporary directory, please follow the below steps:
Note for Linux machines:
In the run.sh script, the script first checks if the OS has java available. It will only use JAVA_HOME if the OS does not have a default java. If the OS java is too high, like 21, this utility will not work as expected. In this scenario, the following command can be ran from the utils directory instead
<full path to java that you want to use> -Xnoagent -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=n -cp ./.jar com.bmc.util.jdbcUtil.MainUtility $
For example
/temp/installLocation/Setup_files/JRE/bin/java -Xnoagent -Xrunjdwp:transport=dt_socket,address=%A_PORT%,server=y,suspend=n -cp ./.jar com.bmc.util.jdbcUtil.MainUtility $
Additionally, for the ojdbcx.jar file, it is ideal to use the jar file from <install package>/Setup_files/lib
|