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 (May 2006, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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)
Comments: To: MKROGH@DSR.KVL.DK
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


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