| Date: | Tue, 23 May 2006 17:06:26 -0700 |
| Reply-To: | toby989@HOTPOP.COM |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | toby989@HOTPOP.COM |
| Subject: | Re: paused processing (daastep or macro) |
|
| In-Reply-To: | <BAY101-F2672E1A13AAA4192BC0833DE9B0@phx.gbl> |
| Content-Type: | text/plain; charset=ISO-8859-1; format=flowed |
Hi
sending out emails using a datastep, and the admin guy told me that if
Irapidly send out emails, I get identified as spammer and blocked from
the server. :-) Strange reason, but I wanted to know.
T
toby dunn wrote:
> 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
|