<?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 Turn on total clock in sas log in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Turn-on-total-clock-in-sas-log/m-p/723917#M224728</link>
    <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ran program that has many procedure and data steps. Runs fine. Each procedure, DS, upon finishing, reports as such&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="1 2 3 4 5 6 7"&gt;"&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="1 2 3 4 5 6 7"&gt;NOTE: PROCEDURE CONTENTS used (Total process time):&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="1 2 3 4 5 6 7"&gt;real time 0.06 seconds&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="1 2 3 4 5 6 7"&gt;cpu time 0.03 seconds"&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Great. Only that at the very end of the running, TOTAL real time, cpu time is NOT reported. How to resurface that total clock?&amp;nbsp;I have this :options mprint mlogic label compress=yes obs=max;" taking effect.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Jia Xin&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 05 Mar 2021 17:08:01 GMT</pubDate>
    <dc:creator>fierceanalytics</dc:creator>
    <dc:date>2021-03-05T17:08:01Z</dc:date>
    <item>
      <title>Turn on total clock in sas log</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Turn-on-total-clock-in-sas-log/m-p/723917#M224728</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ran program that has many procedure and data steps. Runs fine. Each procedure, DS, upon finishing, reports as such&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="1 2 3 4 5 6 7"&gt;"&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="1 2 3 4 5 6 7"&gt;NOTE: PROCEDURE CONTENTS used (Total process time):&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="1 2 3 4 5 6 7"&gt;real time 0.06 seconds&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="1 2 3 4 5 6 7"&gt;cpu time 0.03 seconds"&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Great. Only that at the very end of the running, TOTAL real time, cpu time is NOT reported. How to resurface that total clock?&amp;nbsp;I have this :options mprint mlogic label compress=yes obs=max;" taking effect.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Jia Xin&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Mar 2021 17:08:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Turn-on-total-clock-in-sas-log/m-p/723917#M224728</guid>
      <dc:creator>fierceanalytics</dc:creator>
      <dc:date>2021-03-05T17:08:01Z</dc:date>
    </item>
    <item>
      <title>Re: Turn on total clock in sas log</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Turn-on-total-clock-in-sas-log/m-p/723959#M224737</link>
      <description>&lt;P&gt;When programs are run in batch mode, the whole time is reported at the end of the log.&lt;/P&gt;
&lt;P&gt;And EG records the execution time for a whole code node.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Mar 2021 18:35:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Turn-on-total-clock-in-sas-log/m-p/723959#M224737</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-03-05T18:35:46Z</dc:date>
    </item>
    <item>
      <title>Re: Turn on total clock in sas log</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Turn-on-total-clock-in-sas-log/m-p/724003#M224750</link>
      <description>&lt;P&gt;This is what I do when I want the program run duration in the SAS Log&lt;BR /&gt;1.As the first line in the code I have the following statement&lt;/P&gt;&lt;P&gt;%let start_time=%sysfunc(datetime());&lt;BR /&gt;2.At the end of the program have this data step&lt;BR /&gt;data _NULL_;&lt;/P&gt;&lt;P&gt;run_time=datetime() -&amp;amp;start_time.;&lt;/P&gt;&lt;P&gt;put The run duration was run_time time13.2;&lt;BR /&gt;end;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Mar 2021 20:02:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Turn-on-total-clock-in-sas-log/m-p/724003#M224750</guid>
      <dc:creator>Sajid01</dc:creator>
      <dc:date>2021-03-05T20:02:45Z</dc:date>
    </item>
    <item>
      <title>Re: Turn on total clock in sas log</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Turn-on-total-clock-in-sas-log/m-p/724521#M224941</link>
      <description>I do see the batch job log at SAS Studio. Now I wonder if I need the total or now since step by step clock details are available. Thanks.</description>
      <pubDate>Mon, 08 Mar 2021 14:55:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Turn-on-total-clock-in-sas-log/m-p/724521#M224941</guid>
      <dc:creator>fierceanalytics</dc:creator>
      <dc:date>2021-03-08T14:55:17Z</dc:date>
    </item>
    <item>
      <title>Re: Turn on total clock in sas log</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Turn-on-total-clock-in-sas-log/m-p/731087#M227719</link>
      <description>&lt;P&gt;One nice little option: options fullstimer; does the trick. Forgot all about it.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Apr 2021 23:40:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Turn-on-total-clock-in-sas-log/m-p/731087#M227719</guid>
      <dc:creator>fierceanalytics</dc:creator>
      <dc:date>2021-04-02T23:40:14Z</dc:date>
    </item>
  </channel>
</rss>

