Data Set [11-14]

Saving a SAS Data SetYou can save a SAS data set by simply copying the data set into a library that is connected to the shared folder.

Example

Libname Proj1 '/folders/myfolders';

Data Proj1.Test;
    Set Test;
Run;

The data set will then be saved in the shared folder:

Exercise

Locate the CP951 data set from the SASHELP library. 

Save the CP951 data set into the shared folder myfolders

Need some help?

Get Hint

Get Solution