Hi everybody,
I try to write a dataframe in a SQL Server table with all fields with varchar(max) but i don't find the correct code... My dataframe contains lot of fields, so it's quiet long to specify type for each field...
My R code below :
dbWriteTable(con,
name = "ci_td",
value = ci_tdip,
file_encoding ="latin-1",
field.types="varchar(max)", # here is my problem, I know this is not correct, it's just for explain...
overwrite=TRUE)
Any idea please ?
Thank you for your help,