RODBC provides an ODBC database interface for R. The CRAN package provides access to any Open DataBase Connectivity (ODBC) accessible database.

learn more… | top users | synonyms

0
votes
1answer
50 views

Increase the speed of inserting data frames to oracle tables in R using rodbc

I am using RODBC to insert data frames to oracle table. I have Primary key set up on the table and if a duplicate data frame comes in it will oracle will reject it. In order to make sure I am not ...
2
votes
1answer
41 views

Parameterized queries with RODBC

I have a variable in R that I would like to pass to a database. I could use paste like many suggest when reading Google results, but that is unsafe because of SQL injection vulnerabilities. I'd rather ...
0
votes
1answer
53 views

update an SQL table via R sqlSave

I have a data frame in R having 3 columns, using sqlSave I can easily create a table in an SQL database: channel <- odbcConnect("JWPMICOMP") sqlSave(channel, dbdata, tablename = "ManagerNav", ...
3
votes
1answer
88 views

Replacing a special character from R in a MySQL table

I have a MySQL table that I am acessing from R using the package "RODBC". A few of the columns has long concatenated strings separated by the STX character (\x02). I have shown a screen print of the ...
0
votes
1answer
59 views

tnsping resolves but not able to connect using script

I am not able to connect to an oracle database from my R/Python scripts. Following is the code. TNSPing utility is able to resolve the database using LDAP. I am pasting TNSPING output as well. ...
0
votes
1answer
55 views

R sqlSave String Variables Loop Issues

I'm just now jumping back in the land of R after a few years away and am running into a problem passing variables through a loop with sqlSave. I've got RODBC up and running smoothly with MySQL on a ...
1
vote
1answer
59 views

unixODBC-qui-qt installation - cannot compile Qt program

I am trying to setup unixODBC for Mac OSX Mountain Lion so that I can use RODBC to access to excel spreadsheet. I did lots of research over various documentation and web sites and understand the ...
0
votes
1answer
38 views

Lookup not working as lookup variables can differ in name

I work a lot with databases that I have not created myself. In the databases data is often coded, e.g. male = 1, female = 2. I create a lot of dynamic reports, which need the actual level names, ...
0
votes
0answers
43 views

RODBC sqlUpdate for exporting data to an existing Excel file

I have several data frame which should be added in different Excel file tables. I found the following code but it retuns an error while running. g <- lapply(RiskStats, function(x) ...
0
votes
2answers
218 views

RODBC odbcDriverConnect() Connection Error

I'm trying to use odbcDriverConnect('driver={SQL Server};server=servername\instancename,port;database=testing;username=abc;password=123456') to connect remote database server (sql server 2008). But I ...
0
votes
1answer
84 views

RODBC connection to Oracle database not working, crashes R

I have a number of scripts that pull data from an Oracle 10g database via ODBC on Windows XP that have worked well for quite a while. I recently setup a new Oracle account to pull data from another ...
1
vote
1answer
55 views

rodbc date filter

I have been trying to set a query to a MS SQL database through RODBC. Unfortunately I cannot set appropriate date filters. I tried typing date in quotes and single quotes, DATE function, brackets and ...
0
votes
1answer
53 views

How to store a sqlQuery data frame?

I iterate an array of dates which I use to create a sql query. dates <- c("2010-06-29", "2010-07-09", "2010-07-22") fn1 <- function (N) { queryStart <- "SELECT something FROM ...
0
votes
0answers
87 views

Use RODBC to connect to VM1's Database from VM2

I have a server with two VMs installed VM-1 and VM-2 Machine Name | IP VM-1 | xxx.xxx.xxx.1 VM-2 | xxx.xxx.xxx.2 Right now I have SQL Server 2012 installed on VM-1 and a ...
0
votes
1answer
86 views

Exporting data through RODBC in Excel

After performing calculations in R we wanto to export the results in an Excel file in order to make some formatting and to add graphs. I fould the following page ...
0
votes
0answers
46 views

Writing transformed data to a SQL table

I have a SQL database that contains a table say dbo.Testtable. I read the content into R with RODBC: data <- sqlFetch(connection, dbo.Testtable) and perform some manipulations say: ...
1
vote
1answer
109 views

How to use sqlSave function with existing table in R

I can use sqlSave to create a new table and to append data to that table, but I want the tablet to have some additional columns (for instance, an "ID" autoincrementing column - I am manually adding ...
1
vote
1answer
79 views

How to manage a database connection in an R Package

I'm building an R package, the main purpose of which is to abstract away the pain of dealing with a proprietary database that requires some fairly complex SQL queries in order get data out. As such, ...
0
votes
1answer
72 views

Reading views from SQL through RODBC package

Through the RODBC fuction odbcConnect we connected R with a SQL Express 2008 database. Importing tables in R is quite easy using the sqlFetch fuction sqlFetch(channel, sqtable, ..., colnames = ...
0
votes
0answers
55 views

Error in the results of RODBC::sqlQuery when querying a VIEW (Sybase ASE 12.5)

Several rows with a NA value returned in a specific (decimal) column when querying a VIEW using sqlQuery (where there shoudn't be any). It is the first time I encounter a problem like this with ...
1
vote
1answer
70 views

Is there a max length for queries with RODBC?

I'm trying to write a dataframe to a SQL Server table by collapsing it to a SQL query string and then using RODBC::sqlQuery to exexute the upload. I've got this to work with a small sample but when I ...
1
vote
2answers
216 views

Why won't RODBC upload a dataframe to SQL Server?

library(RODBC) con <- odbcDriverConnect("driver=SQL Server; server=name") df <- data.frame(a=1:10, b=10:1, c=11:20) Trying to upload the dataframe: sqlSave(con, df, ...
5
votes
1answer
270 views

How to insert a dataframe into a SQL Server table?

I'm trying to upload a dataframe to a SQL Server table, I tried breaking it down to a simple SQL query string.. library(RODBC) con <- odbcDriverConnect("driver=SQL Server; server=database") df ...
6
votes
1answer
319 views

RODBC not recognizing my odbc settings

I'm running R 2.15.2 on a Red Hat Linux 6 server. My goal is to connect to a MS SQL Server Database on another machine via RODBC. I did my research and downloaded and installed the linux version of ...
0
votes
1answer
98 views

Using sqlSave function of RODBC package to save data into a table

While trying to use sqlSave function of RODBC, I am not able to choose which database I want to create a table under a connection. I created a connection by name x in MYSQL. But, there are multiple ...
3
votes
0answers
114 views

Comparing database connectivity performance in r [closed]

Our organization uses oracle databases extensively - we have hundreds of thousands of records that we pull into r and then perform statistics. We've been using the RODBC package almost exclusively, ...
2
votes
3answers
324 views

String continuation across multiple lines, no newline characters

Am using the RODBC library to bring data into R. I have a long query that I want to pass a variable to, much like this SO user. Problem is that R interprets the whitespace/carriage returns in my ...
1
vote
1answer
624 views

How to connect R with Access database in 64-bit Window?

When I tried to connect R with Access database I get an error odbcConnectAccess is only usable with 32-bit Windows Does anyone has an idea how to solve this? library(RODBC) ...
0
votes
1answer
131 views

Selecting a specific table in microsoft access 2007 with R code

I have an Access database with a couple of tables and I want to work in just one of them. I am using library RODBC. Let's say the table that I want to work it called dtsample. And my Access database ...
0
votes
1answer
101 views

Providing lookup list from R vector as SQL table for RODBC lookup

I have a list of IDs in an R vector. IDlist <- c(23, 232, 434, 35445) I would like to write an RODBC sqlQuery with a clause stating something like WHERE idname IN IDlist Do I have to read ...
1
vote
0answers
149 views

RODBC join data frame to table in sqlQuery

I've been using RODBC to connect to a DB2 database at work, and thus far everything works well. I can pull tables through sqlQuery, and join tables within the database before getting them back as a ...
0
votes
1answer
134 views

sqlSave fails when tablename is longer than 18 characters

I am currently writing a script that downloads a bunch of .csv's from a FTP server, and then puts each .csv in a MySQL database as its own table. I download the .csv's from the FTP using RCurl and ...
0
votes
0answers
249 views

RODBC sqlQuery() returning error messages on successful execution

This is a bit of a time-sensitive/emergency problem. I have some R code that involves a number of SQL queries using the RODBC package. This code runs every morning on a dedicated Linux server - it ...
3
votes
1answer
120 views

RODBC read error where excel column contains leading NAs

I have been reading Excel sheets into R using the RODBC package and have hit an issue with the Excel ODBC driver. Columns that contain (sufficient) leading NAs are coerced to logical. In Excel the ...
1
vote
0answers
229 views

RODBC: sqlUpdate() doesn't recognise index column

My database table looks approximately like this: +-----+-------+--------------------+-----------+----------+ | ID1 | ID2 | FilePath1 | FilePath2 | Status | ...
1
vote
0answers
50 views

R RODBC - sqlSave decimal precision issues

I'm using sqlSave from R to Oracle using RODBC. I'm saving numbers with decimal places and getting extra decimal places. For example: 195.45 from R shows up as 192.45000000000002 in Oracle
0
votes
0answers
122 views

RODBC: Update, Insert, Create functions don't change DB or give error

I have a created a simple DB with columns (ID [auto increment, Not null], ticker [varchar], price [double(10,4)]). When I go to run the sqlquery function using the RODBC R package, I get nothing as a ...
0
votes
1answer
192 views

Data import error with RODBC from Access

I am trying to import the results of a query performed on an access database into R. I can establish a connection using the RODBC package and I am able to retrieve records, so a connection with the ...
1
vote
1answer
61 views

Retrieving MS Access filename when using RODBC

Typing in my connection name I see a line like DBQ=Path\to\DB. How do I retrieve this value? I have tried conn$DBQ conn[DBQ] conn['DBQ'] conn[,'DBQ'] None return the value. I tried ...
0
votes
3answers
148 views

Writing a formula into an excel file using RODBC

I am able to write a data frame to an excel file, using the RODBC package. Now I would like to include some formulas, e.g. =A1, which upon opening the excel file are interpreted as such; including ...
0
votes
0answers
77 views

In R, for which database engines there are more advanced (native) connection libraries? [closed]

I deal with many different database engines. I am used to use the RODBC package but it has limits (e.g., only 256 chars retrieved for strings). This questions asks for overview of all libraries ...
0
votes
1answer
83 views

sqlQuery: imposible to get the ID number as Character into R?

I'm using the RODBC package inside an ORACLE DATA BASE (DB). Everything is doing very well, but I need to obtain a table from this DB and some variables as characther type, not numbers. So, I made ...
0
votes
0answers
49 views

Connect to a named instance in SQL Server 2008 Express using RODBC

Is there a way to connect to a named instance in SQL Server 2008 Express using RODBC? Thanks!
0
votes
1answer
250 views

How to specify include and lib directories when locally installing RODBC?

i am trying to install RODBC with the commadn R CMD INSTALL -l /my/local/path RODBC.tar.gz and it wont find sql.h and sqlext.h ..how do i pass the include and lib paths to this command?
0
votes
1answer
249 views

RODBC - multiple tables in one sqlQuery() call

I'm using RODBC to pull data into R from an existing SQL database. I am trying to call multiple queries/tables at once. For example: test2=sqlQuery(channel,'select top 10 * from bug; select top 10 * ...
1
vote
1answer
1k views

connect R to MySQL with RODBC using dsn

Short version: I'm trying to figure out how to use the dsn argument in the odbcConnect() function to connect to a MySQL database. Longer version: I appologize if this is an ignorant question. I ...
1
vote
1answer
199 views

RODBC and MYSQL procedure parameters

I would like to repeatedly query a MySQL database from inside R with the RODBC package. I have a MySQL procedure that I normally call like this: CALL`myDB`.`myProc`(x,y) If I use RODBC, how can I ...
2
votes
0answers
131 views

RODBC - Select * Fails on Oracle but can Specify Columns

I am stumped. Using RODBC and connecting to an Oracle database, I have successfully explored my table using the following: sqlColumns(channel, "tablename", schema="schema")$COLUMN_NAME I can even ...
2
votes
1answer
423 views

annoying “feature” (or bugs?) for RODBC

RODBC is the main library in R to import data from a database into R. RODBC seems to have the ability of "guess" the datatype of the column which I find it particularly annoying. I have uploaded a ...
0
votes
2answers
297 views

How to get a 'clean' list of excel worksheet tab names in R with RODBC?

I'm new to R and even newer to using it with Excel. I want to get a list of all the worksheet names (Notes,Weights,Lengths) in an .xls file. You can see what I'm trying below - the problem is that the ...

1 2