Problems with RODBC sqlSave

后端 未结 6 887
轻奢々
轻奢々 2021-02-14 17:39

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         


        
相关标签:
6条回答
  • 2021-02-14 18:11

    I was in the same situation some while back and my problem was rising from inserting data frame column numbers that did not match columns in the destination table. So this what I did. I did an SQL save with an append set to false (implying creation of a new table with a name different from the problematic table). Using the table_name and column_name of the INFORMATION_SCHEMA.COLUMNS of the working database I compared the two tables to determine the missing column.

    select * from INFORMATION_SCHEMA.COLUMNS
    where TABLE_NAME='table1'
    and COLUMN_NAME NOT IN
    (
    select COLUMN_NAME from INFORMATION_SCHEMA.COLUMNS
    where TABLE_NAME='table2'
    )
    

    You can use table1 and table2 interchangeably. one would be the table the sqlsave is failing on while the other would be the one created on the fly

    0 讨论(0)
  • 2021-02-14 18:15

    I got the same error and the problem was the destination table data types. Even it seems there were possible data conversion.
    The solution steps were:

    1. use an unused table name (new table);
    2. set append=False and get the "create table" showed at error msg;
    3. run that create table at database;
    4. the "saveSql" now works either with append=False or append=True.

    It is useful setting "verbose=T" to check exactly where the problem occurs.

    0 讨论(0)
  • 2021-02-14 18:21

    Very old question I know, but I had (and solved for my instance) the same problem just now, getting this error

    Error in odbcUpdate(channel, query, mydata, coldata[m, ], test = test,  : 
      missing columns in 'data'
    

    from using

    sqlSave(
    

    In the rodbc package.

    I solved it by setting

    ,fast = F
    

    If anyone else from the first google results lands here, hope this helps

    EDIT: So I since have looked at this more. When setting the flag to "F" as I recommend below you insert the rows, row by row into the database. While it was "T" it would fail if one row was incorrect, but now that row fails and you don't know about it. So the data base may be missing data that you thought was in there. Check the count of rows in the data base vs the number of rows you expect to be inserted from your dataframe. You probably have a single value that is incompatible. What I have taken to doing now is using "paste" function in a loop to create a string like "insert into tableName values("eg1","eg2") " this way I can get error messages back about why it did not go into the database

    0 讨论(0)
  • 2021-02-14 18:23
    > str(data)
    'data.frame':   3 obs. of  4 variables:
     $ analysedDataID  : num  1 2 3
     $ plateWell       : Factor w/ 3 levels "a","b","c": 1 2 3
     $ screenPlateOrder: num  1 2 3
     $ wellData        : Factor w/ 3 levels "A","B","C": 1 2 3
    

    Have you tried making your numerics integers and your factors characters?

     data <- data.frame(analysedDataID=as.integer(c(1,2,3)), plateWell=c("a","b","c"), screenPlateOrder=as.integer(c(1,2,3)), wellData=c("A","B","C"),stringsAsFactors=FALSE)
    
    0 讨论(0)
  • 2021-02-14 18:26

    different errors can lead to the same error msg. So it is not clear whether this helps you: however if "tablename='wellAnalysedDataTablealready' is already created in the mySql database as an empty table you will get this error. Try to remove it and let the sqlsave(...) function take care of it

    0 讨论(0)
  • 2021-02-14 18:32

    If the issue is in fact with case-sensitivity, then it looks like there's an easy fix without changing any functions by using the "preserve" option, which appears in the line noted by Ari B. Friedman: "nochange=cnames". So, when you initially create your RODBC channel, you can simply specify that as the case option:

    my_sql_channel <<- odbcConnect("myOdbc", case="nochange")
    
    0 讨论(0)
提交回复
热议问题