Dick Duck's SAS tips

This is the nest where I keep my SAS eggs. It's all here... Arrays, control loops, links to online SAS resources, you name it.

Thursday, February 23, 2006

Good housekeeping

To get rid of temporary files after they've served their usefulness, use the following:

proc datasets; delete tmp1 tmp2; run;
Apart from sort, this is the only proc that I write all on one line. You can do a lot more stuff with it, such as repair files, make copies and save files.

0 Comments:

Post a Comment

<< Home