<?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 Sas step run time in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Sas-step-run-time/m-p/807782#M318540</link>
    <description>Hi all,&lt;BR /&gt;&lt;BR /&gt;I have a sas code and it reads input file with 4crores records, takes around 66.07 cpu seconds. Is there any way to reduce run time for reading large input files?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Sirisha</description>
    <pubDate>Thu, 14 Apr 2022 12:20:29 GMT</pubDate>
    <dc:creator>Sirisha1520</dc:creator>
    <dc:date>2022-04-14T12:20:29Z</dc:date>
    <item>
      <title>Sas step run time</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sas-step-run-time/m-p/807782#M318540</link>
      <description>Hi all,&lt;BR /&gt;&lt;BR /&gt;I have a sas code and it reads input file with 4crores records, takes around 66.07 cpu seconds. Is there any way to reduce run time for reading large input files?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Sirisha</description>
      <pubDate>Thu, 14 Apr 2022 12:20:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sas-step-run-time/m-p/807782#M318540</guid>
      <dc:creator>Sirisha1520</dc:creator>
      <dc:date>2022-04-14T12:20:29Z</dc:date>
    </item>
    <item>
      <title>Re: Sas step run time</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sas-step-run-time/m-p/807820#M318541</link>
      <description>&lt;P&gt;&lt;A href="https://www.youtube.com/watch?v=he9ecikOPCE" target="_blank"&gt;https://www.youtube.com/watch?v=he9ecikOPCE&lt;/A&gt; &lt;/P&gt;</description>
      <pubDate>Thu, 14 Apr 2022 13:52:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sas-step-run-time/m-p/807820#M318541</guid>
      <dc:creator>maguiremq</dc:creator>
      <dc:date>2022-04-14T13:52:41Z</dc:date>
    </item>
    <item>
      <title>Re: Sas step run time</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sas-step-run-time/m-p/807829#M318546</link>
      <description>&lt;P&gt;Well the time depends upon many things. Is it on a local or remote drive, the hardware and software resources available, your code etc, the state of the file (compressed or uncompressed etc). And you are reading 40 million records and there could be many variables in each record.&lt;BR /&gt;It is difficult to give any suggestion specific to your case.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Apr 2022 14:49:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sas-step-run-time/m-p/807829#M318546</guid>
      <dc:creator>Sajid01</dc:creator>
      <dc:date>2022-04-14T14:49:03Z</dc:date>
    </item>
    <item>
      <title>Re: Sas step run time</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sas-step-run-time/m-p/807852#M318551</link>
      <description>Its a mainframe job using Ps file having few char and date columns around 15 variables with record length 80.</description>
      <pubDate>Thu, 14 Apr 2022 16:11:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sas-step-run-time/m-p/807852#M318551</guid>
      <dc:creator>Sirisha1520</dc:creator>
      <dc:date>2022-04-14T16:11:18Z</dc:date>
    </item>
    <item>
      <title>Re: Sas step run time</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sas-step-run-time/m-p/807879#M318560</link>
      <description>&lt;P&gt;Please use units that the rest of the world understands. Wikipedia told me that a "crore" is 10 million (10 mega).&lt;/P&gt;
&lt;P&gt;So you are reading 40 million lines from a mainframe partitioned dataset, which means that it took one CPU second to process ~ 150000 rows. Not bad at first glance.&lt;/P&gt;
&lt;P&gt;Looking deeper, 80 bytes per row means a raw data throughput of 11.5 MB/s, which is not really fast.&lt;/P&gt;
&lt;P&gt;Please run the import step again, with&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options fullstimer;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;set, and then post the complete log, so we can see any transformations you make, and the real time/CPU time rate.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Apr 2022 17:03:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sas-step-run-time/m-p/807879#M318560</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2022-04-14T17:03:52Z</dc:date>
    </item>
    <item>
      <title>Re: Sas step run time</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sas-step-run-time/m-p/807940#M318580</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/390220"&gt;@Sirisha1520&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Its a mainframe job using Ps file having few char and date columns around 15 variables with record length 80.&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;What slice of the machine did your job get?&amp;nbsp; Maybe it was busy doing something else that had higher priority than you.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Apr 2022 22:19:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sas-step-run-time/m-p/807940#M318580</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2022-04-14T22:19:05Z</dc:date>
    </item>
  </channel>
</rss>

