I am trying to write a table to a non-default schema in SQL Server 2017. I am using RStudio\'s documentation as to what the best practice is for doing this: https://db.rstud
In my case, doing dbWriteTable(con, "[schema].newTbleIris", iris) without wrapping any function around worked.
dbWriteTable(con, "[schema].newTbleIris", iris)