<DM-HOME>/etc/odbcinst.ini where DM-HOME is the data manager home (locate odbcinst)
* and ~/.odbc.ini
=== Drivers ===
Example
* odbcinst.ini
<code>cat /usr/local/etc/odbcinst.ini</code>
==== Test it ====
with unixODBC - isql
<code>isql -v OracleODBC-11g</code>
===== 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
<code>nm -A /u01/app/oracle/instantclient_11_2/libsqora.so.11.1 | grep SQLGetPrivateProfileStringW</code>
/u01/app/oracle/instantclient_11_2/libsqora.so.11.1: U SQLGetPrivateProfileStringW
SQLGetPrivateProfileStringW is defined in the last libodbc.so and libodbcinst.so.
<code>nm -A /usr/lib/libodbcinst.so | grep SQLGetPrivateProfileStringW</code>