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

Hello. i have merged three data sets, each of which were imported from a windows desktop C:location using the INFILE statement. How do i export this new (merged) single data set back to the desktop? Thank you!

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

1. Assign a library to the location you'd like the data set to be stored. To assign a library, use the LIBNAME statement to map a libname alias to the desired path on your local PC.

 

2. Use PROC datasets to move the data set. Or another data step. 

Libname outloc '/folders/myfolders/samples/';
 
proc datasets library=work;
 copy in=work out=outloc;
 select dataset_save;
run;quit;

/* Or this, to copy WORK data to a permanent folder */
data outloc.dataset_save;
 set work.dataset_save;
run;

 

View solution in original post

3 REPLIES 3
Reeza
Super User

1. Assign a library to the location you'd like the data set to be stored. To assign a library, use the LIBNAME statement to map a libname alias to the desired path on your local PC.

 

2. Use PROC datasets to move the data set. Or another data step. 

Libname outloc '/folders/myfolders/samples/';
 
proc datasets library=work;
 copy in=work out=outloc;
 select dataset_save;
run;quit;

/* Or this, to copy WORK data to a permanent folder */
data outloc.dataset_save;
 set work.dataset_save;
run;

 

miz
Calcite | Level 5 miz
Calcite | Level 5
Hello Grand Advisor Reeza.



Would you please provide me further insight for the first step:



1. Assign a library to the location you'd like the data set to be stored.

Is this step to be completed in Windows? If yes, then how?



Still learning, miz


Cynthia_sas
Diamond | Level 26
Hi:
LIBNAME myperm 'c:\temp\sasdata';

data myperm.class;
set sashelp.class;
run;

This will write a SAS dataset to the folder location: C:\temp\sasdata\class.sas7bdat (which is the Windows file extension for a SAS dataset). Do note that c:\temp\sasdata folder must be already created and you will need to have write access to that folder for the program to work.

cynthia

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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