Não sou muito bom com o Linux, mas sou capaz de passar por tudo. Meu objetivo final é fazer com que o RODBC trabalhe em um aplicativo brilhante para se conectar a uma base de dados oracle 11.1g. Meu primeiro passo foi configurar o cliente oracle no Ubuntu VM.
Detalhes da versão do Ubuntu:
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 14.04.4 LTS
Release: 14.04
Codename: trusty
Eu segui as instruções em:
link
Para instalar o cliente. Eu também incluí o pacote odbc também. Consegui que o sqlplus se conectasse ao banco de dados com bastante facilidade, mas o RODBC em brilho ainda não estava funcionando. Quando tentei usar o isql em uma janela de terminal, ele falhou. Para superar isso, instalei o freeTDS.
sudo apt-get install unixodbc unixodbc-dev freetds-dev tdsodbc
Eu configurei os seguintes arquivos assim.
--- /etc/odbcinst.ini ---
[Oracle]
Description = Oracle ODBC Connection
Driver = /usr/lib/oracle/12.1/client64/lib/libsqora.so.12.1
--- /etc/odbc.ini ---
[STODS1]
Driver = Oracle
ServerName = STODS1
Port = 1521
Database = STODS1
TDS_Version = 7.1
--- /etc/freetds/freetds.conf ---
[global]
tds version = 7.1
[STODS1]
host = stods1.xxxx.xxxxxxx.com
port = 1521
tds version = 7.1
com esta configuração recebo a seguinte resposta de diferentes comandos
isql STODS1 USER PASSWORD -v
+---------------------------------------+
| Connected! |
| |
| sql-statement |
| help [tablename] |
| quit |
| |
+---------------------------------------+
SQL>
Como pode ser visto, o isql funciona muito bem
No entanto, o osql falha.
sudo osql -S "STODS1" -U USER -P PASSWORD
checking shared odbc libraries linked to isql for default directories...
strings: '': No such file
trying /tmp/sql ... no
trying /tmp/sql ... no
trying /etc ... OK
checking odbc.ini files
reading /home/oper/.odbc.ini
[STODS1] not found in /home/oper/.odbc.ini
reading /etc/odbc.ini
[STODS1] found in /etc/odbc.ini
found this section:
[STODS1]
Driver = Oracle
ServerName = STODS1
Port = 1521
Database = STODS1
TDS_Version = 7.1
looking for driver for DSN [STODS1] in /etc/odbc.ini
found driver line: " Driver = Oracle"
driver "Oracle" found for [STODS1] in odbc.ini
found driver named "Oracle"
"Oracle" is not an executable file
looking for entry named [Oracle] in /etc/odbcinst.ini
found driver line: " Driver = /usr/lib/oracle/12.1/client64
/lib/libsqora.so.12.1"
found driver /usr/lib/oracle/12.1/client64/lib/libsqora.so.12.1 for
[Oracle] in odbcinst.ini
/usr/lib/oracle/12.1/client64/lib/libsqora.so.12.1 is an executable file
Using ODBC-Combined strategy
DSN [STODS1] has servername "STODS1" (from /etc/odbc.ini)
cannot read "/home/oper/.freetds.conf"
/etc/freetds/freetds.conf is a readable file
looking for [STODS1] in /etc/freetds/freetds.conf
found this section:
[STODS1]
host = stods1.xxxx.xxxxxx.com
port = 1521
tds version = 7.1
Configuration looks OK. Connection details:
DSN: STODS1
odbc.ini: /etc/odbc.ini
Driver: /usr/lib/oracle/12.1/client64/lib/libsqora.so.12.1
Server hostname: stods1.xxxx.xxxxxx.com
Address: 10.17.16.44
Attempting connection as ESG_REPORT ...
+ isql STODS1 ESG_REPORT ESG_REPORT1 -v
[08004][unixODBC][Oracle][ODBC][Ora]ORA-12154: TNS:could not resolve the
connect identifier specified
[ISQL]ERROR: Could not SQLConnect
sed: can't read /tmp/osql.dump.25185: No such file or directory
Eu não entendo porque o osql falha e o isql funciona como parece que o osql usa o isql nas últimas linhas.
O tsql também falha e, olhando através da rede e dos manuais, parece que é devido à versão do TDS, mas tentei todas as versões do TDS que conheço nos arquivos de configuração e forçando-o usando o TDSVER.
tsql -S STODS1 -U USER -P PASWORD
locale is "en_GB.UTF-8"
locale charset is "UTF-8"
using default charset "UTF-8"
Error 20017 (severity 9):
Unexpected EOF from the server
OS error 115, "Operation now in progress"
Error 20002 (severity 9):
Adaptive Server connection failed
There was a problem connecting to the server
Acho que incluí a maioria das informações, mas se houver mais alguma coisa que você precise, por favor, me avise. Eu tenho trabalhado nisso por 5 dias agora, então estou ficando um pouco cansado. Qualquer ajuda seria ótima.
Obrigado