<?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 proc casuitil slow in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/proc-casuitil-slow/m-p/821605#M324381</link>
    <description>&lt;P&gt;Hello everybody,&lt;BR /&gt;the following proc casutil:&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;data hseq.HSEQ_INSP_FIND_TEMP1;&lt;BR /&gt;set staging.HSEQ_INSP_FIND_TEMP&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;proc casutil incaslib="hseq" outcaslib="hseq"; &lt;BR /&gt;droptable casdata="HSEQ_INSP_FIND_TEMP" quiet; &lt;BR /&gt;promote casdata="HSEQ_INSP_FIND_TEMP1" casout="HSEQ_INSP_FIND_TEMP"; &lt;BR /&gt;save casdata="HSEQ_INSP_FIND_TEMP" casout="HSEQ_INSP_FIND_TEMP" replace; &lt;BR /&gt;quit;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;deals with uploading a dataset of about 15 million observations and 240 columns to the CAS. The loading times are very long about 2 hours. Is there any option to improve this upload?&lt;/P&gt;
&lt;P&gt;Thank you&lt;/P&gt;</description>
    <pubDate>Tue, 05 Jul 2022 14:19:30 GMT</pubDate>
    <dc:creator>dipand</dc:creator>
    <dc:date>2022-07-05T14:19:30Z</dc:date>
    <item>
      <title>proc casuitil slow</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-casuitil-slow/m-p/821605#M324381</link>
      <description>&lt;P&gt;Hello everybody,&lt;BR /&gt;the following proc casutil:&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;data hseq.HSEQ_INSP_FIND_TEMP1;&lt;BR /&gt;set staging.HSEQ_INSP_FIND_TEMP&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;proc casutil incaslib="hseq" outcaslib="hseq"; &lt;BR /&gt;droptable casdata="HSEQ_INSP_FIND_TEMP" quiet; &lt;BR /&gt;promote casdata="HSEQ_INSP_FIND_TEMP1" casout="HSEQ_INSP_FIND_TEMP"; &lt;BR /&gt;save casdata="HSEQ_INSP_FIND_TEMP" casout="HSEQ_INSP_FIND_TEMP" replace; &lt;BR /&gt;quit;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;deals with uploading a dataset of about 15 million observations and 240 columns to the CAS. The loading times are very long about 2 hours. Is there any option to improve this upload?&lt;/P&gt;
&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Tue, 05 Jul 2022 14:19:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-casuitil-slow/m-p/821605#M324381</guid>
      <dc:creator>dipand</dc:creator>
      <dc:date>2022-07-05T14:19:30Z</dc:date>
    </item>
    <item>
      <title>Re: proc casuitil slow</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-casuitil-slow/m-p/821652#M324398</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;What if you use the Table action set in PROC CAS?&lt;/P&gt;
&lt;P&gt;And also use DVR memory format?&lt;BR /&gt;DVR =&amp;nbsp;&lt;SPAN&gt;duplicate value reduction&amp;nbsp;&lt;BR /&gt;Take care : instead of the actions illustrated below, you will need to replace with the&amp;nbsp;loadTable Action !&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc cas;
  t.name = "waterflow";
  tdvr.name = t.name || "_dvr";

  table.tableDetails / table=t.name;
  table.copyTable /    
    table=t,
    casOut=tdvr + {memoryFormat="DVR", replace=True};
  table.dropTable / table=t.name;

  table.tableDetails / table=tdvr.name;
  table.tableInfo / table=tdvr.name;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Tue, 05 Jul 2022 18:17:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-casuitil-slow/m-p/821652#M324398</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2022-07-05T18:17:16Z</dc:date>
    </item>
  </channel>
</rss>

