没有tnsnames.ora的RODBC与Oracle的连接

时间:2016-05-09 11:04:57

标签: r oracle rodbc tnsnames

我正在尝试使用RODBC从R连接到Oracle而不使用tnsnanes.ora。

我已经尝试过跟随字符串,但它们都没有工作。

> con.text <- paste0("Driver={OracleODBC-11g};Dbq=//oracle.server:1527/database.pdw.prod;Uid=user;Pwd=pswd;")

> con.text <- paste0("Driver={OracleODBC-11g}; ",
         "CONNECTSTRING=(DESCRIPTION=(ADDRESS= (PROTOCOL = TCP)(HOST = oracle.server)(PORT = 1527))(CONNECT_DATA=(SERVICE_NAME = database.pdw.prod))); uid=user;pwd=pswd;")

> con.text <- paste0("Driver=", "OracleODBC-11g"
                     , ";Server=", "oracle.server"
                     , ";Database=", "database.pdw.prod"
                     , ";Uid=", "user"
                     , ";Pwd=", "pwd", ";")

> con.text <- paste0("Driver=", "OracleODBC-11g"
                      , ";Server=", "oracle.server"
                      , ";CONNECTSTRING=" , "(DESCRIPTION=(ADDRESS= (PROTOCOL = TCP)(HOST = oracle.server)(PORT = 1527))(CONNECT_DATA=(SERVICE_NAME = database.pdw.prod)))" 
                      , ";Database=", "database.pdw.prod"
                      , ";Uid=", "user"
                      , ";Pwd=", "pswd", ";")
> con1 <- odbcDriverConnect(connection = con.text)

但对于所有这些字符串,我遇到以下错误:

Warning messages:
1: In odbcDriverConnect(connection = con.text) :
 [RODBC] ERROR: state HY000, code 12162, message [unixODBC][Oracle][ODBC][Ora]ORA-12162: TNS:net service name is incorrectly specified
2: In odbcDriverConnect(connection = con.text) : ODBC connection failed

OR

      1: In odbcDriverConnect(connection = con.text) :
  [RODBC] ERROR: state IM002, code 0, message [unixODBC][Driver Manager]Data source name not found, and no default driver specified

1 个答案:

答案 0 :(得分:3)

您正在寻找的正确的sysntaxis是

Conex     <- odbcDriverConnect("DRIVER=Oracle en OraClient11g_home2;UID=USERNAME;PWD=PASSWORD;DBQ=//HOSTNAME:PORT/ORACLE_SID;",
             believeNRows = FALSE)

实施例

Conex     <- odbcDriverConnect("DRIVER=Oracle en OraClient11g_home2;UID=John;PWD=Deere;DBQ=//fcoracleserver.youdomain:1521/TestEnvironment;",
             believeNRows = FALSE)

困难的部分是找到驱动程序的名称,因为你可以看到我的是西班牙语。

我做的是首先使用C:\ Windows \ System32 \ odbcad32.exe创建一个ODBC Conection,在那里你可以检查你的Oracle或SQL Server驱动程序的正确名称。

创建连接后,您可以使用 在R上odbcDataSources(),查看该连接并找出驱动程序。这真的很难。

希望它有所帮助!