Date: Tue, 23 May 2006 20:25:39 +0000
Reply-To: toby dunn <tobydunn@HOTMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: toby dunn <tobydunn@HOTMAIL.COM>
Subject: Re: paused processing (daastep or macro)
In-Reply-To: <1148412191.026792.254330@y43g2000cwc.googlegroups.com>
Content-Type: text/plain; format=flowed
I know, I was just curious why one would want to do such a thing.
Toby Dunn
From: "Mogens A. Krogh" <MKROGH@DSR.KVL.DK>
Reply-To: "Mogens A. Krogh" <MKROGH@DSR.KVL.DK>
To: SAS-L@LISTSERV.UGA.EDU
Subject: Re: paused processing (daastep or macro)
Date: Tue, 23 May 2006 12:23:11 -0700
Dear Toby,
You can use the CALL SLEEP function.
The following code will delay each loop 5 seconds.
data _null_;
do n=1 to 10;
call sleep(5,1);
put n=;
end;
run;
Regards
Mogens A. Krogh
DVM, PhD-student Cattle Health
www.kvl.dk
|