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
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.