BookmarkSubscribeRSS Feed
navneet
Calcite | Level 5

how to open sas7bdat file in sas 9.1

2 REPLIES 2
Reeza
Super User
SAS 9.1 is old...get a newer version, if you're a student try the free version of SAS, SAS UE. You can set up a libname to read a SAS dataset. SAS Analytics U also provides two free SAS training courses on how to use SAS.

libname mydata '/folders/myfolders/';

proc print mydata.data;
run;
Kurt_Bremser
Super User

You do NOT need to "import" a .sas7bdat file, as it already is a table in native SAS format. The .sas7bdat format can (mostly) be opened across all SAS versions from 8.0 upwards.

 

So all you need to do is to define a SAS library with the LIBNAME statement, pointing to the directory where the .sas7bdat is stored, and - voila! - you can use libname.tablename anywhere a SAS table name is needed in your program.

 

If you experience problems doing this, you will have to supply additional information about your SAS environment (OS platform(s), logical/physical locations etc). And what is in your log if a statement fails to execute properly.

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 2086 views
  • 0 likes
  • 3 in conversation