Date: Thu, 21 Jan 2010 01:03:28 -0800
Reply-To: Chris Jones <chrisj75@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Chris Jones <chrisj75@GMAIL.COM>
Organization: http://groups.google.com
Subject: Re: how to execute SAS macro in a scheduled manner
Content-Type: text/plain; charset=ISO-8859-1
Simply
data _null_ ;
s = sleep(60) ;
run ;
Depending on the environment, you may need to represent the value in
milliseconds.
|