SQL function not working when trying to write table to non-default schema

前端 未结 3 2022
情话喂你
情话喂你 2021-01-14 22:07

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

3条回答
  •  清歌不尽
    2021-01-14 22:30

    In my case, doing dbWriteTable(con, "[schema].newTbleIris", iris) without wrapping any function around worked.

提交回复
热议问题