Tips:Make DATA your friend

From sasCommunity

Jump to: navigation, search

When you need to create a data set but need to take care only to avoid data sets that already exist, use _DATA_. For example:

Proc Format CNTLOUT= _DATA_ ;
run;

or

Proc Sort OUT= _DATA_ ;
  by ~something~ ;
run; 

Submitted by Peter Crawford. Contact me at my Discussion Page.

....see also

Personal tools