BookmarkSubscribeRSS Feed
teleous0
Fluorite | Level 6

Hi

When attempting to save datasets, I sometimes get a '.clt" extension. Sometimes   '.log' will appear behind '.sas' while saving and I find that I have a log rather than the dataset. 

 

Thanks

1 REPLY 1
Reeza
Super User

The answer below assumes you're using SAS University Edition.

 

How are you saving your dataset? Using the point and click tool?

 

The easiest way would be to create a library and copy the file to the location.

 

Instructions on how to set up shared drive to save your dataset can be found here:

http://support.sas.com/software/products/university-edition/faq/shared_folder_access_existing.htm

 

libname myloc '/folders/myshortcuts/my_data';

proc datasets library=work nodetails nolist;
copy in=work out=myloc;
select data_save;
run;quit;

libname myloc;
Develop Code with SAS Studio

Get started using SAS Studio to write, run and debug your SAS programs.

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
  • 1 reply
  • 1152 views
  • 0 likes
  • 2 in conversation