是否有人在 Mac 上使用R连接到Microsoft SQL Server时有一个良好的演练链接?我一直在寻找一段时间,似乎找不到任何适合我的东西。
答案 0 :(得分:1)
我让它为我工作。
我不得不使用Simba的SQL Server驱动程序(而不是Microsoft的),并设置此参数:Integrated Security=NTLM
(我认为可以为可信连接做同样的事情)
https://community.rstudio.com/t/rstudio-database-connections-using-windows-authentication/7465/32
答案 1 :(得分:0)
答案 2 :(得分:-3)
我的生活中从未使用过Mac机,但对于R和SQL,我认为你所使用的机器没什么区别。以下适用于我。
library(RODBC)
dbconnection <- odbcDriverConnect("Driver=ODBC Driver 11 for SQL Server;Server=Server_Name\\SQLEXPRESS; Database=TestDB;Uid=; Pwd=; trusted_connection=yes")
initdata <- sqlQuery(dbconnection,paste("select * from MyTable;"))
odbcClose(channel)
RODBC odbcDriverConnect() Connection Error
https://andersspur.wordpress.com/2013/11/26/connect-r-to-sql-server-2012-and-14/
试一试。