/etc/odbcinst.ini where DM-HOME is the data manager home (locate odbcinst)
* and ~/.odbc.ini
=== Drivers ===
Example
* odbcinst.ini
cat /usr/local/etc/odbcinst.ini
==== Test it ====
with unixODBC - isql
isql -v OracleODBC-11g
===== Support =====
==== undefined symbol: SQLGetPrivateProfileStringW ====
You may get the following:
isql: symbol lookup error: /u01/app/oracle/instantclient_11_2/libsqora.so.11.1: undefined symbol: SQLGetPrivateProfileStringW
This is normally because the driver manager (unixODBC) version is not compatible with the ODBC driver. Verify the #driver manager version needed for the oracle ODBC database version.
See below how to search for a symbol:
* Symbol lookup
nm -A /u01/app/oracle/instantclient_11_2/libsqora.so.11.1 | grep SQLGetPrivateProfileStringW
/u01/app/oracle/instantclient_11_2/libsqora.so.11.1: U SQLGetPrivateProfileStringW
SQLGetPrivateProfileStringW is defined in the last libodbc.so and libodbcinst.so.
nm -A /usr/lib/libodbcinst.so | grep SQLGetPrivateProfileStringW