When I was using R 3.4.0 (64bit), the following code worked perfectly well.
#R Connect to Oracle DB
library(RODBC)
#Open connection
con <- odbcConnect(dsn = "DBNAME", uid="myuserid", pwd="mypassword",rows_at_time=500)
However I recently updated to R 3.5.2 (64bit), and now I cannot connect anymore.
I get the following error message when I try
Warning messages: 1: In RODBC::odbcDriverConnect("DSN=DBNAME;UID=myuserid;PWD=mypassword", : [RODBC] ERROR: state IM002, code 0, message [Microsoft][Gestionnaire de pilotes ODBC] Source de données introuvable et nom de pilote non spécifié 2: In RODBC::odbcDriverConnect("DSN=DBNAME;UID=myuserid;PWD=mypassword", : ODBC connection failed
Any help on resolving this issue will be highly appreciated.