Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 <- data.frame(a=1:10, b=10:1, c=11:20)

values <- paste("(",df$a,",", df$b,",",df$c,")", sep="", collapse=",")

cmd <- paste("insert into MyTable values ", values)

result <- sqlQuery(con, cmd, as.is=TRUE)

..which seems to work but does not scale very well. Is there an easier way?

share|improve this question
If the table exists then "append" needs to be TRUE, or use sqlUpdate. If it doesn't exist I would have stuck with the default (FALSE) in sqlSave. I have read that there are weird naming conventions for SQL Server but I do not have a copy so unable to test. – DWin Jan 15 at 19:08

1 Answer

up vote 2 down vote accepted

[edited] Perhaps pasting the names(df) would solve the scaling problem:

   values <- paste( " df[  , c(", 
                     paste( names(df),collapse=",") ,
                                   ")] ", collapse="" ) 
      values
      #[1] " df[  , c( a,b,c )] "

You say your code is "working".. I would also have thought one would use sqlSave rather than sqlQuery if one wanted to "upload".

I would have guessed this would be more likely to do what you described:

 sqlSave(con, df, tablename = "MyTable")
share|improve this answer
Not sure what you're trying to do with the values variable, that just creates a wierd looking string?! You are right about the trailing comma, that would be a problem. The "extra quotes" are left from my original code. – wije Jan 15 at 12:32
That was just supposed to illustrate that names(df) and "[" could be used to access a data.frame by columns more abstractly than what you were doing. It would need a collapse="" or collapse="," to be effective. – DWin Jan 15 at 17:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.