<?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: How to deal with large dataset? Asking for tips in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-deal-with-large-dataset-Asking-for-tips/m-p/725645#M225434</link>
    <description>&lt;P&gt;&lt;EM&gt;&amp;gt;&amp;nbsp;&amp;nbsp;is there anything else I should take a look at when dealing with a large dataset to save storage&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;That's a very vague question.&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&amp;gt;&amp;nbsp;there should be something, in general, I want to learn first.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;You can look at options BUFNO, BUFSIZE, and SGIO (if you are using Windows) to speed up data transfer.&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&amp;gt;&amp;nbsp;&amp;nbsp;dealing with a large dataset to save storage&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;the SPDE engine with binary compression is very good at reducing file size, and therefore disk access. It brings other goodies too, like on-the-fly-sorting, or faster indexes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 11 Mar 2021 22:08:29 GMT</pubDate>
    <dc:creator>ChrisNZ</dc:creator>
    <dc:date>2021-03-11T22:08:29Z</dc:date>
    <item>
      <title>How to deal with large dataset? Asking for tips</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-deal-with-large-dataset-Asking-for-tips/m-p/725386#M225307</link>
      <description>&lt;P&gt;Hi all SAS experts,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;After a while, I wrap up my code. The problem now I can see is how to deal with 1,2TB data splitted to 8 datasets.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I try to find some ways to deal with a large datasets, the one very impressive to me is to use view (Data step view). Can I ask from your experience is there anything else I should take a look at when dealing with a large dataset to save storage. I know there should be specific ways with specific codes, but there should be something, in general, I want to learn first.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Warmest regards.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Mar 2021 09:50:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-deal-with-large-dataset-Asking-for-tips/m-p/725386#M225307</guid>
      <dc:creator>Phil_NZ</dc:creator>
      <dc:date>2021-03-11T09:50:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to deal with large dataset? Asking for tips</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-deal-with-large-dataset-Asking-for-tips/m-p/725400#M225311</link>
      <description>&lt;P&gt;Maybe start by reading "&lt;FONT size="4"&gt;&lt;SPAN class="a-size-extra-large"&gt;High-Performance SAS Coding" by &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16961"&gt;@ChrisNZ&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Mar 2021 10:59:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-deal-with-large-dataset-Asking-for-tips/m-p/725400#M225311</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2021-03-11T10:59:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to deal with large dataset? Asking for tips</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-deal-with-large-dataset-Asking-for-tips/m-p/725403#M225312</link>
      <description>The fastest way is :&lt;BR /&gt;&lt;BR /&gt;data F M;&lt;BR /&gt; set sashelp.class;&lt;BR /&gt;select(sex);&lt;BR /&gt;when('F') output F;&lt;BR /&gt;when('M') output M;&lt;BR /&gt;otherwise;&lt;BR /&gt;end;&lt;BR /&gt;run;</description>
      <pubDate>Thu, 11 Mar 2021 11:02:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-deal-with-large-dataset-Asking-for-tips/m-p/725403#M225312</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-03-11T11:02:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to deal with large dataset? Asking for tips</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-deal-with-large-dataset-Asking-for-tips/m-p/725645#M225434</link>
      <description>&lt;P&gt;&lt;EM&gt;&amp;gt;&amp;nbsp;&amp;nbsp;is there anything else I should take a look at when dealing with a large dataset to save storage&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;That's a very vague question.&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&amp;gt;&amp;nbsp;there should be something, in general, I want to learn first.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;You can look at options BUFNO, BUFSIZE, and SGIO (if you are using Windows) to speed up data transfer.&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&amp;gt;&amp;nbsp;&amp;nbsp;dealing with a large dataset to save storage&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;the SPDE engine with binary compression is very good at reducing file size, and therefore disk access. It brings other goodies too, like on-the-fly-sorting, or faster indexes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Mar 2021 22:08:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-deal-with-large-dataset-Asking-for-tips/m-p/725645#M225434</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2021-03-11T22:08:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to deal with large dataset? Asking for tips</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-deal-with-large-dataset-Asking-for-tips/m-p/725646#M225435</link>
      <description>&lt;P&gt;Indeed,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15475"&gt;@andreas_lds&lt;/a&gt;, indeed &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Mar 2021 22:09:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-deal-with-large-dataset-Asking-for-tips/m-p/725646#M225435</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2021-03-11T22:09:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to deal with large dataset? Asking for tips</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-deal-with-large-dataset-Asking-for-tips/m-p/725668#M225442</link>
      <description>&lt;P&gt;First, we need to know&amp;nbsp;&lt;STRONG&gt;what&lt;/STRONG&gt; you want to do with that large dataset (which information you want to gain), so we can determine&amp;nbsp;&lt;STRONG&gt;how&lt;/STRONG&gt; to do it in a most efficient way.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Mar 2021 22:42:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-deal-with-large-dataset-Asking-for-tips/m-p/725668#M225442</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-03-11T22:42:55Z</dc:date>
    </item>
  </channel>
</rss>

