/ Published in: SAS
URL: http://studysas.blogspot.com/2009/06/clean-up-delete-datasets-in-work.html
Expand |
Embed | Plain Text
It is better always to clean-up/empty the work directory before we run the next set of SAS code. This is VERY helpful in situations where the �working� files created tend to use up a large amount of memory, once the logic of the program has been checked, KILLing the working files will result in a more efficient program. Another important reason to issue the above statement at the end of a program is when programs are run in batch, this will clean up the working library to be sure any �old� files are not left around to be erroneously used1. contd.....
Comments
Subscribe to comments
You need to login to post a comment.

we do this by using--> proc datasets library = work kill nolist; quit;