| Date: | Tue, 12 Feb 2008 13:28:26 -0500 |
| Reply-To: | Susan Durham <sdurham@BIOLOGY.USU.EDU> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | Susan Durham <sdurham@BIOLOGY.USU.EDU> |
| Subject: | Re: ODS File *.RTF WITHOUT PROMPT to open/save ????? |
|---|
On Mon, 11 Feb 2008 07:54:31 -0800, machelle <machellewilchesky@GMAIL.COM>
wrote:
>Hi
>I have to run a big batch job which will take several days.
>
>It would be helpful if after each section of my program if I could
>store a results table onto my hard drive.
>
>When I do these runs individuallly (and not in a huge batch) at the
>end of each run I issue the following SAS statements:
>
> ODS rtf(1) file='C:\results\Tabi.RTF';
> proc print data=res_1; run;
> ods rtf(1) close;
>
> (where the value i changes according to the appropriate model/table
>name)
>
>The problem is that SAS stops what it's doing each time and waits for
>me to decide whether or not to save or to open this file before
>continuing.
>
>Is there anyway around this?
>
>Thanks in advance, gurus :)
>
>Machelle
You also could try
ods results off;
HTH,
Susan
|