<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Time to execute on Footnote in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Time-to-execute-on-Footnote/m-p/34257#M8331</link>
    <description>can u send me the script?</description>
    <pubDate>Thu, 31 Dec 2009 18:24:30 GMT</pubDate>
    <dc:creator>HM3</dc:creator>
    <dc:date>2009-12-31T18:24:30Z</dc:date>
    <item>
      <title>Time to execute on Footnote</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Time-to-execute-on-Footnote/m-p/34250#M8324</link>
      <description>When a statement is submitted, I want to include Real time or CPU time in the footnote.How to go about it?</description>
      <pubDate>Wed, 23 Dec 2009 12:41:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Time-to-execute-on-Footnote/m-p/34250#M8324</guid>
      <dc:creator>HM3</dc:creator>
      <dc:date>2009-12-23T12:41:58Z</dc:date>
    </item>
    <item>
      <title>Re: Time to execute on Footnote</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Time-to-execute-on-Footnote/m-p/34251#M8325</link>
      <description>You can use the SAS system option ALTLOG to capture a copy of the SAS log output to a file, and specify the FULLSTIMER option to reveal detailed statistics in the log.  Then use a DATA step to parse the ALTLOG file, capturing the desired metrics.  And lastly you will need to generate SAS macro variable(s) containing these SAS execution metrics.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Wed, 23 Dec 2009 15:08:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Time-to-execute-on-Footnote/m-p/34251#M8325</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2009-12-23T15:08:55Z</dc:date>
    </item>
    <item>
      <title>Re: Time to execute on Footnote</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Time-to-execute-on-Footnote/m-p/34252#M8326</link>
      <description>Scott&lt;BR /&gt;
are you able to open the altlog (to parse it) before the session closesp</description>
      <pubDate>Wed, 23 Dec 2009 16:30:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Time-to-execute-on-Footnote/m-p/34252#M8326</guid>
      <dc:creator>Peter_C</dc:creator>
      <dc:date>2009-12-23T16:30:01Z</dc:date>
    </item>
    <item>
      <title>Re: Time to execute on Footnote</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Time-to-execute-on-Footnote/m-p/34253#M8327</link>
      <description>It appears that you cannot.&lt;BR /&gt;
&lt;BR /&gt;
[pre]&lt;BR /&gt;
40   data _null_;&lt;BR /&gt;
41      infile "%sysfunc(getoption(altlog))";&lt;BR /&gt;
42      input;&lt;BR /&gt;
43      list;&lt;BR /&gt;
44      run;&lt;BR /&gt;
&lt;BR /&gt;
ERROR: File is in use, C:\Documents and Settings\datanull\My Documents\My SAS Files\9.1\ALT.log.&lt;BR /&gt;
NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
Then there is our old friend PROC PRINTTO.</description>
      <pubDate>Wed, 23 Dec 2009 18:00:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Time-to-execute-on-Footnote/m-p/34253#M8327</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2009-12-23T18:00:20Z</dc:date>
    </item>
    <item>
      <title>Re: Time to execute on Footnote</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Time-to-execute-on-Footnote/m-p/34254#M8328</link>
      <description>data _null_ is correct - disregard my post-reply about using ALTLOG - that is if you want to parse the current session's log.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Wed, 23 Dec 2009 18:32:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Time-to-execute-on-Footnote/m-p/34254#M8328</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2009-12-23T18:32:06Z</dc:date>
    </item>
    <item>
      <title>Re: Time to execute on Footnote</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Time-to-execute-on-Footnote/m-p/34255#M8329</link>
      <description>data null ;&lt;BR /&gt;
that was my expectation.&lt;BR /&gt;
I'm surprised Scott neither suggested proc printto, nor the more interesting proc scaproc (which might be able to collect also the cpu times iirc - if you have sas92)</description>
      <pubDate>Wed, 23 Dec 2009 18:41:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Time-to-execute-on-Footnote/m-p/34255#M8329</guid>
      <dc:creator>Peter_C</dc:creator>
      <dc:date>2009-12-23T18:41:59Z</dc:date>
    </item>
    <item>
      <title>Re: Time to execute on Footnote</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Time-to-execute-on-Footnote/m-p/34256#M8330</link>
      <description>sorry about my wishful thinking&lt;BR /&gt;
apparently proc scaproc reports elapse time, not CPU</description>
      <pubDate>Wed, 23 Dec 2009 19:14:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Time-to-execute-on-Footnote/m-p/34256#M8330</guid>
      <dc:creator>Peter_C</dc:creator>
      <dc:date>2009-12-23T19:14:13Z</dc:date>
    </item>
    <item>
      <title>Re: Time to execute on Footnote</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Time-to-execute-on-Footnote/m-p/34257#M8331</link>
      <description>can u send me the script?</description>
      <pubDate>Thu, 31 Dec 2009 18:24:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Time-to-execute-on-Footnote/m-p/34257#M8331</guid>
      <dc:creator>HM3</dc:creator>
      <dc:date>2009-12-31T18:24:30Z</dc:date>
    </item>
    <item>
      <title>Re: Time to execute on Footnote</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Time-to-execute-on-Footnote/m-p/34258#M8332</link>
      <description>Please share the script</description>
      <pubDate>Thu, 31 Dec 2009 18:26:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Time-to-execute-on-Footnote/m-p/34258#M8332</guid>
      <dc:creator>HM3</dc:creator>
      <dc:date>2009-12-31T18:26:06Z</dc:date>
    </item>
    <item>
      <title>Re: Time to execute on Footnote</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Time-to-execute-on-Footnote/m-p/34259#M8333</link>
      <description>to what script do you refer</description>
      <pubDate>Thu, 31 Dec 2009 19:39:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Time-to-execute-on-Footnote/m-p/34259#M8333</guid>
      <dc:creator>Peter_C</dc:creator>
      <dc:date>2009-12-31T19:39:15Z</dc:date>
    </item>
  </channel>
</rss>

