連線到關聯式資料庫

library(RODBC)
con <- odbcDriverConnect("driver={Sql Server};server=servername;trusted connection=true")
dat <- sqlQuery(con, "select * from table");
close(con)

這將連線到 SQL Server 例項。有關連線字串的外觀的更多資訊,請訪問 connectionstrings.com

此外,由於沒有指定資料庫,因此你應該確保完全限定要查詢的物件,例如 databasename.schema.objectname