LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (February 2010, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Thu, 4 Feb 2010 15:48:40 -0500
Reply-To:   Jim Groeneveld <jim.1stat@YAHOO.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   Jim Groeneveld <jim.1stat@YAHOO.COM>
Subject:   Re: turn off proc export writing code to log ?

Hi Tom,

You already got your answer. Yet the code written to the log may be quite useful for building your own exporting code, departing from the code that PROC EXPORT (and IMPORT as well) generate. Instead of the PROC you can insert the data step code in your program and fine tune it to your needs.

Regards - Jim. -- Jim Groeneveld, Netherlands Statistician, SAS consultant http://jim.groeneveld.eu.tf

On Thu, 4 Feb 2010 15:05:52 -0500, Tom Smith <tomquin99@GMAIL.COM> wrote:

>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\ > ... > ...


Back to: Top of message | Previous page | Main SAS-L page