BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
pipposz
Calcite | Level 5

I am brand new and would like to access the data on my SAS server with the R program.

Is it possible to create such a connection with ODBC?

R Code:

library(odbc)

connection_string <- "DRIVER={SAS IOM Data Server};SERVER="...";PORT="...";TRUSTED_CONNECTION=YES;"  

con <- dbConnect(odbc::odbc(), .connection_string = connection_string)  

data_sources <- odbcListDataSources()

dbDisconnect(con)

 

If yes, how can i setup ODBC on my server, otherwise are there other options here?

Thanks in advance

1 ACCEPTED SOLUTION

Accepted Solutions
2 REPLIES 2
Sajid01
Meteorite | Level 14

Hello
If it is your intention to read SAS datasets (sas7bdat files) then you can read them directly without connecting to a SAS server.
The following link has the details with examples.

https://haven.tidyverse.org/reference/read_sas.html

Kurt_Bremser
Super User

You would need the SAS ODBC driver on the computer where you run R, and SAS/SHARE licensed and set up on the SAS server.

 

If you have SAS/IML licensed, you can use R from within SAS.

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 2012 views
  • 1 like
  • 3 in conversation