RODBC sqlSave table creation problems

前端 未结 6 2041

I\'m having trouble creating a table using RODBC\'s sqlSave (or, more accurately, writing data to the created table).

This is different than the existing sqlSave qu

6条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-15 12:03

    I've encountered the same problem-- the way I found around it is to create the an empty table using regular CREATE TABLE SQL syntax, and then append to it via sqlSave. For some reason, when I tried it your way, I could actually see the table name in the MSSQL database - even after R threw the error message you showed above - but it would be empty.

提交回复
热议问题