when i use the function:dbWriteTable to writetable into sqlserver,there is something wrong with it:
1.write the data less than 999 rows,it's ok,not the error :Error in textConnection(message) : invalid 'text' argument
dbWriteTable(conn, 'SIX', data[1001:1999,], row.names = F, append = T)
2.when the data >=1000 rows, the error like this
dbWriteTable(conn, 'SIX', data[1:1000,], row.names = F, append = T)
can you help me? what's wrong with it? thks.