BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
jjoy4891
Fluorite | Level 6

Hi,

 

I have 4 sas7bdat files , wanted to concatenate them for data manipulation . How can i import the same to sas university edition and perform concatenation ?

1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26

data want;

    merge myfiles.dataset1 myfiles.dataset2 myfiles.dataset3 myfiles.dataset4;

    by somevariablename; /* Optional */

run;

--
Paige Miller

View solution in original post

4 REPLIES 4
PaigeMiller
Diamond | Level 26

You don't import the .sas7bdat files. Instead, you point SAS to the folder they are stored in by using a LIBNAME statement.

 

Something like this:

 

libname myfiles "/folders/myshortcuts/temp/temp";
--
Paige Miller
jjoy4891
Fluorite | Level 6
thank you,
i did the above step, however, i can't merge these 4 datasets >
jjoy4891
Fluorite | Level 6
please bear with me, have less exposure to sas programming
PaigeMiller
Diamond | Level 26

data want;

    merge myfiles.dataset1 myfiles.dataset2 myfiles.dataset3 myfiles.dataset4;

    by somevariablename; /* Optional */

run;

--
Paige Miller

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

How to connect to databases in SAS Viya

Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 4 replies
  • 1095 views
  • 0 likes
  • 2 in conversation