Oct 16, 2019

SAS Progaramming Tips - Find Work Library Path


Run Below code to find current session's work Library Path. It will show full path in SAS Logs. 

Some times you may want to see where your work data has been written and you don't know the path for it, right? If you are using like SAS DI Studio then it's not possible to see work library in library location like you can see work library in Base SAS tool. At this situation you may want to go to the path and see temp tables created by job.

%put %quote( %sysfunc( pathname(work)) );

No comments:

Post a Comment