Date: Tue, 3 Apr 2007 10:10:05 -0700
Reply-To: shiling99@YAHOO.COM
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Shiling Zhang <shiling99@YAHOO.COM>
Organization: http://groups.google.com
Subject: Re: difference between RUN and QUIT
In-Reply-To: <2C6B65AAC3623140922DE580669C456ACF1C01@LTA3VS001.ees.hhs.gov>
Content-Type: text/plain; charset="iso-8859-1"
On Apr 3, 10:16 am, r...@CDC.GOV ("Fehd, Ronald J. (CDC/CCHIS/NCPHI)")
wrote:
> > From: madhu g
> > what is the difference between run statement and quit statement?
>
> > can any one help me for finding the difference for those.
>
> there are a limited number of procs:
> -- datasets and sql are the first two I know of --
> where quit is the step boundary
> -- i.e.: you get the log note saying how much time was used --
> and therefore run is the execute statement(s) boundary
>
> Ron Fehd the macro maven CDC Atlanta GA USA RJF2 at cdc dot gov
add another 4 procs I can think of where quit is the step boundary,
proc glm;
proc reg;
proc model;
proc iml;
|