My data is loaded on Micorsoft SQL server on a Remote Desktop with Microsoft Windows Server 2012. I want to access Data via R. I know its possible via RODBC with
odbcConnect(dsn, uid="", pwd="")
But I am confused on what to enter on dsn.
My data is loaded on Micorsoft SQL server on a Remote Desktop with Microsoft Windows Server 2012. I want to access Data via R. I know its possible via RODBC with
odbcConnect(dsn, uid="", pwd="")
But I am confused on what to enter on dsn.
Copyright © 2021 Jogjafile Inc.
it depends on whether you want to use ODBC DSN or DSN-less connection string, the type of authentication and the driver.
Here's an example of DSN-less connection string, using domain authentication and SQL Server driver:
Here's another example, with SQL authentication and FreeTDS driver (e.g. on Mac or Linux)
See http://www.connectionstrings.com/sql-server/ for more examples of what can go in the "connection" element.
Here's a function I use to open connection in a cross-platform way: