<?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 Need a program with FULLSTIMER option, to compare sas9.2 with sas9.4 in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Need-a-program-with-FULLSTIMER-option-to-compare-sas9-2-with/m-p/246829#M46242</link>
    <description>&lt;P&gt;Need a Base SAS program, that can run for 30 minutes to 60 minutes. We need to run the program, as part of Performance Testing , between SAS9.2 and SAS9.4. The program should have FULLSTIMER option.&lt;/P&gt;&lt;P&gt;Your help&amp;nbsp;is greatly appreciated. Thanks.&lt;/P&gt;</description>
    <pubDate>Fri, 29 Jan 2016 03:30:27 GMT</pubDate>
    <dc:creator>West26</dc:creator>
    <dc:date>2016-01-29T03:30:27Z</dc:date>
    <item>
      <title>Need a program with FULLSTIMER option, to compare sas9.2 with sas9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-a-program-with-FULLSTIMER-option-to-compare-sas9-2-with/m-p/246829#M46242</link>
      <description>&lt;P&gt;Need a Base SAS program, that can run for 30 minutes to 60 minutes. We need to run the program, as part of Performance Testing , between SAS9.2 and SAS9.4. The program should have FULLSTIMER option.&lt;/P&gt;&lt;P&gt;Your help&amp;nbsp;is greatly appreciated. Thanks.&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jan 2016 03:30:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-a-program-with-FULLSTIMER-option-to-compare-sas9-2-with/m-p/246829#M46242</guid>
      <dc:creator>West26</dc:creator>
      <dc:date>2016-01-29T03:30:27Z</dc:date>
    </item>
    <item>
      <title>Betreff: Need a program with FULLSTIMER option, to compare sas9.2 with sas9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-a-program-with-FULLSTIMER-option-to-compare-sas9-2-with/m-p/246847#M46246</link>
      <description>&lt;P&gt;Without knowing the hardware sas is running on, it is hardly possible to write a program running for at least 30 minutes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For IO-testing a tool exists:&lt;/P&gt;
&lt;P&gt;Linux: &lt;A href="http://support.sas.com/kb/51/660.html" target="_blank"&gt;http://support.sas.com/kb/51/660.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Windows: &lt;A href="http://support.sas.com/kb/51/659.html" target="_blank"&gt;http://support.sas.com/kb/51/659.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jan 2016 07:33:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-a-program-with-FULLSTIMER-option-to-compare-sas9-2-with/m-p/246847#M46246</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2016-01-29T07:33:51Z</dc:date>
    </item>
    <item>
      <title>Re: Need a program with FULLSTIMER option, to compare sas9.2 with sas9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-a-program-with-FULLSTIMER-option-to-compare-sas9-2-with/m-p/246848#M46247</link>
      <description>&lt;P&gt;Skip through the logs of your batch jobs, till you find one that took long enough, add the fullstimer option and run it in both releases.&lt;/P&gt;
&lt;P&gt;That takes care of the problem of the system's CPU and I/O cpabilities, which nobody here can replicate. All servers are different.&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jan 2016 07:48:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-a-program-with-FULLSTIMER-option-to-compare-sas9-2-with/m-p/246848#M46247</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-01-29T07:48:54Z</dc:date>
    </item>
    <item>
      <title>Re: Need a program with FULLSTIMER option, to compare sas9.2 with sas9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-a-program-with-FULLSTIMER-option-to-compare-sas9-2-with/m-p/246859#M46251</link>
      <description>&lt;P&gt;If you want something to run for a set time, would something like:&lt;/P&gt;
&lt;PRE&gt;%let mins=00:01;

data want;
  start=time();
  end=start+"&amp;amp;mins."t;
  i=0;
  do while (time() &amp;lt;= end);
    if i &amp;gt;= 600000 then do;   /* Note, adjust this, otherwise you may end up with a lot of records */
      curr_time=time(); 
      output; 
      i=0;
    end;
    i=i+1;
  end;
run;&lt;/PRE&gt;</description>
      <pubDate>Fri, 29 Jan 2016 11:10:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-a-program-with-FULLSTIMER-option-to-compare-sas9-2-with/m-p/246859#M46251</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2016-01-29T11:10:49Z</dc:date>
    </item>
    <item>
      <title>Re: Need a program with FULLSTIMER option, to compare sas9.2 with sas9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Need-a-program-with-FULLSTIMER-option-to-compare-sas9-2-with/m-p/247009#M46275</link>
      <description>&lt;P&gt;I really do appreciate for the time you have spend on my porblem. Thanks for your help.&lt;img id="smileyvery-happy" class="emoticon emoticon-smileyvery-happy" src="https://communities.sas.com/i/smilies/16x16_smiley-very-happy.png" alt="Smiley Very Happy" title="Smiley Very Happy" /&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 30 Jan 2016 01:50:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Need-a-program-with-FULLSTIMER-option-to-compare-sas9-2-with/m-p/247009#M46275</guid>
      <dc:creator>West26</dc:creator>
      <dc:date>2016-01-30T01:50:21Z</dc:date>
    </item>
  </channel>
</rss>

