Hello,
I'm trying to connect to a SQL server database from R. The database is read only, will I still be able to do that? I have tried the following code, but it's not working for some reason.
dbconnection <- dbConnect(odbc(),
Driver="SQL Server",
Server="",
Database="",
uid="",
Pwd="",
Trusted_Connection="yes",
Authentification="SQL Server Authentification")
Thank you 