|
options nonotes;
proc export;
run;
options notes;
> -----Original Message-----
> From: owner-sas-l@listserv.uga.edu [mailto:owner-sas-
> l@listserv.uga.edu] On Behalf Of Tom Smith
> Sent: Thursday, February 04, 2010 3:06 PM
> To: SAS-L@LISTSERV.UGA.EDU
> Subject: turn off proc export writing code to log ?
>
> When proc export is used, it writes code to the log as follows. Is
> there
> any option to turn off this code exporting ?
>
> Thanks a lot.
>
> 954
> /*******************************************************************
> ***
> 955 * PRODUCT: SAS
> 956 * VERSION: 9.2
> 957 * CREATOR: External File Interface
> 958 * DATE: 04FEB10
> 959 * DESC: Generated SAS Datastep Code
> 960 * TEMPLATE SOURCE: (None Specified.)
> 961
>
***********************************************************************
> /
> 962 data _null_;
> 963 set mydata end=EFIEOD;
> 964 %let _EFIERR_ = 0; /* set the ERROR detection macro variable
> */
> 965 %let _EFIREC_ = 0; /* clear export record count macro
> variable */
> 966 file 'C:\Mydoc\
> ...
> ...
|