The following are the steps that need to be taken for successful connection to the SQLExpress database
- Ensure that the SQL Server database has permission for the user that you are using as shown below.
- Ensure that the NamedPipes and TCP/IP protocols are Enabled using the SQL Server Configuration Manager.
- Otherwise you will receive an error as --
- [Microsoft][ODBC SQL Server Driver][Shared Memory]SQL Server does not exist or access denied.
- When you are enabling the TCP/IP protocol ensure that you specify the port 1433 at the appropriate location. Otherwise you will receive an error as --
- [Microsoft][ODBC SQL Server Driver][TCP/IP Sockets]SQL Server does not exist or access denied.
- [Microsoft][ODBC SQL Server Driver][TCP/IP Sockets]ConnectionOpen (Connect()).
- Restart the SQL SERVER service after configuring the above step.
- Ensure that the firewall is open to the port 1433.
- Ensure that you can run a Telnet session to your sql server IP address.
- There is a default user group created named SQLRUserGroupSQLEXPRESS when you install SQLEXPRESS with R Ensure that the user connecting to the SQL server from R Studio belongs to this group. Otherwise you will receive an error as -- Error in doTryCatch(return(expr), name, parentenv, handler) : Could not open data source.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #Connection string to connect to SQL Express connStr <- font=""> paste("Driver=SQL Server; Server=", "SQLEXPRESS", ";Database=", "TestDB", ";Trusted_Connection=true;", sep = ""); #Get the data from the Table SQL_testdata <- font=""> RxSqlServerData(table = "dbo.rental_data", connectionString = connStr, returnDataFrame = TRUE); #Import the data into a data frame testdata <- font=""> rxImport(SQL_testdata); #See the structure of the data head(testdata);->->->
#See the top rowsstr(testdata); |
Hope this is useful for those who would like to connect to sql server using RStudio.
No comments:
Post a Comment