Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
220 views

RODBC queries returning zero rows

Issue: RODBC (falsely) returning zero rows Situation: I'm using RODBC to connect to a DSN I created using a commercial DB's ODBC driver (OSI Soft's PI Historian Time Series DB, if you're curious). ...
7
votes
4answers
643 views

Save R plot to web server

I'm trying to create a procedure which extracts data from a MySQL server (using the RODBC package), performs some statistical routines on that data in R, then saves generated plots back to the server ...
4
votes
3answers
219 views

rodbc character encoding error with PostgreSQL

I'm getting a new error which I've never gotten before when connecting from R to a GreenPlum PostgreSQL database using RODBC. I've gotten the error using both EMACS/ESS and RStudio, and the RODBC call ...
4
votes
2answers
2k views

odbcConnectExcel function from RODBC package for R not found on Ubuntu

Installing the RODBC package on Ubuntu is a bit of a kludge. First I learned to install the following: $ sudo apt-get install r-cran-rodbc That wasn't good enough as the package was still looking ...
3
votes
2answers
166 views

RODBC fails: “invalid character value for cast specification” - Excel 2007

I'm trying to use RODBC to write to an Excel2007 file and I keep getting errors. I've reduced the issue to this very basic case, a 1-row data.frame with character, numeric, Date, and logical ...
3
votes
2answers
351 views

Error when trying to connect R to PostgreSQL using RODBC

I am trying to connect to R using RODBC. However, when I run ch <- odbcConnect("rails_dev", uid="skline", pwd="d0gsleep") I get this error: In ...
3
votes
1answer
250 views

RODBC Query Tuning

I am trying to pull data from our Oracle datamart into R using RODBC. I have been able to work through some of my issues, but I have one basic question. How can I retain the formatting as it sits in ...
3
votes
2answers
394 views

RODBC sqlSave column types: how determined?

I'm trying to understand how RODBC determines the column types of a newly created (Access) table? The R documentation of sqlSave is very cryptic: "types are selected by consulting arguments varTypes ...
3
votes
2answers
376 views

How to convert searchTwitter results (from library(twitteR)) into a data.frame?

I am working on saving twitter search results into a database (SQL Server) and am getting an error when I pull the search results from twitteR. If I execute: library(twitteR) puppy <- ...
3
votes
2answers
186 views

How to upload an image to SQL Server in R

I am creating some graphs which I want to update into a database table. The procedure I am following is: create the graphs as a png/jpeg file. Read that file as a binary vector sqlUpdate My code ...
3
votes
4answers
326 views

Can I gracefully include formatted SQL strings in an R script?

I'm working in an R script that uses a long SQL string, and I would like to keep the query relatively free of other markup so as to allow copying and pasting between editors and applications. I'd also ...
2
votes
1answer
78 views

annoying “feature” (or bugs?) for RODBC

I regularly use RODBC to import data from xls file 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 file test.xls ...
2
votes
1answer
37 views

R RODBC putting list of numbers into an IN() statement

I've looked at the 'Pass R variable to RODBC's sqlQuery with multiple entries? ' already but can't seem to get it to work. I'm trying to do an sqlQuery() from R on a SQL Server 2008 R2 db. I'm ...
2
votes
1answer
453 views

RODBC Temporary Table Issue when connecting to MS SQL Server

I am running R on unix and I am using the RODBC package to connect to MS SQL server. I can execute a query that returns results fine with the package, but if I use a temporary table somewhere in my ...
2
votes
2answers
205 views

RODBC string getting truncated

I am fetching data from MySql Server into R using RODBC. So in one column of the database is a character vector SELECT MAX(CHAR_LENGTH(column)) FROM reqtable; RETURNS 26566 Now I will show you an ...
2
votes
2answers
572 views

Pass R variable to RODBC's sqlQuery?

Is there any way to pass a variable defined within R to the sqlQuery function within the RODBC package? Specifically, I need to pass such a variable to either a scalar/table-valued function, a stored ...
2
votes
1answer
245 views

Not using colnames when reading .xls files with RODBC

I have another puzzling problem. I need to read .xls files with RODBC. Basically I need a matrix of all the cells in one sheet, and then use greps and strsplits etc to get the data out. As each ...
2
votes
1answer
64 views

MySQL odbc timeout from R

I'm using R to read in some data from a MySQL database using the RODBC package. The data is then processed and some results are sent back to the database. The problem is that the server closes the ...
2
votes
2answers
232 views

Is there a better way to code this sqlQuery in R?

I'm writing an R script to get some database data and then do stuff with it, using the RODBC package. Currently all my sqlQuery commands are one long string; stsample<-sqlQuery(odcon, ...
2
votes
3answers
719 views

How to save R plot image to database?

I'd like to save a plot image directly to the database. Is the best way in R to do this: Write the plot image (png) to the filesystem Read the file that was written Send the file to the database ...
1
vote
1answer
29 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 ...
1
vote
0answers
34 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 ...
1
vote
1answer
86 views

ROBDC SqlSave: How to export data into Excel sheets?

I'm trying to export data from R into one Excel file (into different sheets): library(plyr) library(RODBC) g <- lapply(iris, function(x) as.data.frame(table(x))) save2excel <- function(x) ...
1
vote
1answer
59 views

Parallel Database calls with RODBC

I am operating on chunks of panel data with about 3*10^6 rows and 11 columns. This data is stored in a SQL database (the data I use is a subset of an even larger dataset). I want to process chunks ...
1
vote
0answers
51 views

convert everything import from sqlQuery to character

I have an xls file to be imported into R using RODBC, one of the column has the following data: 1,1A,2,3,4 When I use the sqlQuery command, this column is converted into number and gives the ...
1
vote
1answer
82 views

Validating data integrity after import from xls to R using RODBC

I am using RODBC for importing a xls file with ~10000 row and ~250 columns, using the script below: channel <- odbcConnectExcel(xls.file="s:/demo.xls") demo <- sqlFetch(channel,"Sheet_1") ...
1
vote
1answer
313 views

R: run multiple line sql from text file

In R, how can I import the contents of a multiline text file (containing SQL) into multiple lines of SQL? I've studied R Language: Import multiline SQL query to single string and managed to get a ...
1
vote
2answers
408 views

SQL query error with ODBC connection in R using Informix driver

With functionality from the RODBC package, I have successfully created an ODBC but receive error messages when I try to query the database. I am using the INFORMIX 3.31 32 bit driver (version ...
1
vote
1answer
166 views

Loading table from database with large integers in R

I'm trying to load data into a data frame in R from a state education Access database. The database provides information about schools in the state, and each school has a 12-digit identifying number. ...
1
vote
2answers
503 views

RODBC and Access - Loading data

I am trying to load some data into R from an Access database. All of the instructions I can find say to use odbcConnectAccess("file.mdb") but I cannot seem to load this function. Has it been replaced ...
1
vote
0answers
442 views

How to open Excel 2007 File from Password Protected Sharepoint 2007 site in R using RODBC or RCurl?

I am interested in opening an Excel 2007 file in R 2.11.1 using RODBC. The Excel file resides in the shared documents page of a MOSS2007 website. I currently download the .xlsx file to my hard drive ...
1
vote
1answer
132 views

Copy of Access mdb database being updated by live database

I'm trying to compute statistics for data held in an Access .mdb database. In order to avoid interfering with the live database, I'm working from a copy which I made by simply using copy-paste in ...
1
vote
1answer
209 views

RODBC functions and errors/warnings

A question about this R code: library(RODBC) ch <- tryCatch(odbcConnect("RTEST"), warning=function(w){print("FAIL! (warning)");return(NA)}, ...
1
vote
4answers
887 views

Querying Oracle DB from Revolution R using RODBC

RODBC error in Revolution R 64bit on winxp64 bit connected to Oracle using a 64bit ODBC driver thru a DSN library(RODBC) db <- odbcConnect("oraclemiso",uid="epicedf",pwd="…") rslts = sqlQuery(db, ...
1
vote
0answers
332 views

RODBC sqlSave not all columns

How can I make sqlSave to write only a subset of columns. I've a (MS-Access) table with e.g. columns A, B, C en D and if I send a sqlSave command with a data frame with columns A, B en D (no C) I get ...
0
votes
2answers
56 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 ...
0
votes
1answer
104 views

R + RODBC + sqlSave: Mapping dataframe timestamps to sql server timestamps

I am trying to upload a data frame to a table in sql server using sqlSave(). This dataframe has a timestamp in it and I'd like to map the timestamp col to a datetime col in sqlserver. I am getting ...
0
votes
1answer
50 views

Getting SQL stored procedure results into data.frame format using RODBC

I am using the RODBC package to query for results in my SQL server. I have a certain stored procedure written that, when executed in my SQL Server Mgmt. studio (for example), returns a table. However, ...
0
votes
1answer
91 views

Error with sqlSave

I'm fighting with sqlSave to add my matrix B that looks like this: Noinscr 88877799 45645687 23523521 45454545 to an SQL table. so I run the following command: sqlSave(channel, b, ...
0
votes
2answers
166 views

Query SPSS file

R version: 2.12.2 / OS: Windows XP Data that I need to query and manipulate is stored in a SPSS .sav file (size ~ 112MB) and I have a very basic knowledge of SPSS syntax. I am much more comfortable ...
0
votes
2answers
132 views

How to read utc timestamps from Sql Server using RODBC in R?

I am trying to import some data from Sql Server 2008 into R, using RODBC with: db <- odbcDriverConnect(connection = "Driver={SQL Server Native Client 10.0};Server=server; ...
0
votes
1answer
191 views

Problems with RODBC sqlSave

I'm having some difficulty inserting a data frame into a mySql database using RODBC. Below is the code I'm using: data <- data.frame(analysedDataID=c(1,2,3), plateWell=c("a","b","c"), ...
0
votes
2answers
112 views

Failed R instances + RODBC

Quick question: I am running multiple R instances parallel in batch mode using an RODBC connection, and randomly one (or more) of my instances is failing. If I go back and run the instances one by ...
0
votes
1answer
176 views

R ODBC SQL Query with a filepath name (Eg for INSERT INTO … IN …)

Using R 2.13.0 with Window XP 32b, I am struglling with defining properly a query that I'd like to build in R and send to sqlQuery from the RODBC package. I have a problem with adding a filepath to ...
0
votes
0answers
267 views

Import csv file with mysqlimport

I would like to bulk insert a csv file into a MySQL 5.5 table that I create with the sqlSave() command in the RODBC package. I use sqlSave() to create the table, column names, and variable types, and ...
0
votes
2answers
121 views

How to skip primary key in sqlSave() command?

I am trying to insert a data.frame in the MySQL database using RODBC. The command I am using is the following: sqlSave(channel,dbData,tablename='table_name', ...
0
votes
1answer
250 views

MSSQL login authentication problems with ODBC connection and R stats package

I am trying to connect an ODBC source to the R statistical package but having log in problems. I have set up the ODBC name eplR with an SQL server driver linking to the (local) server using windows ...
0
votes
0answers
251 views

RODBC sqlQuery as.is returning bad results

I'm trying to import an excel worksheet into R. I want to retrieve a (character) ID column and a couple of date columns from the worksheet. The following code works fine but brings one column in as a ...
0
votes
2answers
171 views

RODBC returning 0 values

I am accessing a commercial DB. Via prompt: select PersonCode, PersonDate from CODB.mastertable where PersonCode=42 PersonCode PersonDate ----------- ------------ 42 Jan 3 2011 42 ...
0
votes
3answers
158 views

RODBC (sometimes) does not read numbers

I am reading Excel sheets into R using ROBDC. However, I encountered some strange results. Sometimes, restarting the R console will help, but I tried 3 times now, and the following bug (?) persists. ...

1 2