<?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: sas7bdat work with partitions in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/sas7bdat-work-with-partitions/m-p/834797#M329996</link>
    <description>Update - there is a SPD Server client available for Viya. This means that you pretty much can use SPD Server from Viya SAS Compute Server like you do in SAS 9.4.&lt;BR /&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/v_006/spdsug/n0vg1g427lrxzgn1fhbdqw9hm319.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/v_006/spdsug/n0vg1g427lrxzgn1fhbdqw9hm319.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I guess this is available so that costumers can migrate to Viya, without having to replace their data store. That said, SPD Server )server part) will most likely not be migrated to Viya. My guess is that SAS will create bundles with other 3rd arty DBMS, like Single Store.</description>
    <pubDate>Fri, 23 Sep 2022 06:57:03 GMT</pubDate>
    <dc:creator>LinusH</dc:creator>
    <dc:date>2022-09-23T06:57:03Z</dc:date>
    <item>
      <title>sas7bdat work with partitions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sas7bdat-work-with-partitions/m-p/828952#M327477</link>
      <description>Hi everybody,&lt;BR /&gt;&lt;BR /&gt;I need some help about options for large datasets and their support and scalable in the time.&lt;BR /&gt;&lt;BR /&gt;Does the concept of partitions in DBMS works on sas tables? My theory is.. i can have physical tables about year-month and all together represent the complete table as logical representation.&lt;BR /&gt;&lt;BR /&gt;Do you have any idea how to work partitions on sas7bdat? or what other options to deal big tables?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Claudio</description>
      <pubDate>Wed, 17 Aug 2022 03:57:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sas7bdat-work-with-partitions/m-p/828952#M327477</guid>
      <dc:creator>claudiodejesusa</dc:creator>
      <dc:date>2022-08-17T03:57:33Z</dc:date>
    </item>
    <item>
      <title>Re: sas7bdat work with partitions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sas7bdat-work-with-partitions/m-p/828957#M327480</link>
      <description>&lt;P&gt;Suppose you import data on a monthly basis, and store them as&lt;/P&gt;
&lt;PRE&gt;data_202201
data_202202
data_202203&lt;/PRE&gt;
&lt;P&gt;and so on.&lt;/P&gt;
&lt;P&gt;You can then create views like this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data data_2022 / view=data_2022;
set
  data_202201
  data_202202
  data_202203
  /* ... */
;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The names of the individual datasets can be created and stored in a macro variable in a SQL (SELECT INTO) or DATA (CALL SYMPUTX) step dynamically, as needed.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Aug 2022 06:08:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sas7bdat-work-with-partitions/m-p/828957#M327480</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2022-08-17T06:08:04Z</dc:date>
    </item>
    <item>
      <title>Re: sas7bdat work with partitions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sas7bdat-work-with-partitions/m-p/828962#M327484</link>
      <description>&lt;P&gt;There are no support for partitions for SAS Base engine files.&lt;/P&gt;
&lt;P&gt;From&amp;nbsp; a performance perspective, I suggest that you try out SPDE engine, which phisically divide data sets into smaller filer, so multi-threaded reads could happen.&lt;/P&gt;
&lt;P&gt;With an additional license (SPD Server) you can use logical partitions (so called clusters) which i similar to DBMS partitions.&lt;/P&gt;
&lt;P&gt;That said, there is an ongoing transition towards Viya, where SPDE will still be accessible (only RO for backward compability).&lt;/P&gt;
&lt;P&gt;So far, no SPD Server client have been released AFAIK for Viya.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Aug 2022 07:37:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sas7bdat-work-with-partitions/m-p/828962#M327484</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2022-08-17T07:37:13Z</dc:date>
    </item>
    <item>
      <title>Re: sas7bdat work with partitions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sas7bdat-work-with-partitions/m-p/829003#M327497</link>
      <description>As LinusH pointed out . Two options:&lt;BR /&gt;1) if you have money ,buy SAS  SPD Server .&lt;BR /&gt;2) Try SPDE engine ,but it has many limitation compare with Base V9 engine .</description>
      <pubDate>Wed, 17 Aug 2022 12:21:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sas7bdat-work-with-partitions/m-p/829003#M327497</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2022-08-17T12:21:17Z</dc:date>
    </item>
    <item>
      <title>Re: sas7bdat work with partitions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sas7bdat-work-with-partitions/m-p/834797#M329996</link>
      <description>Update - there is a SPD Server client available for Viya. This means that you pretty much can use SPD Server from Viya SAS Compute Server like you do in SAS 9.4.&lt;BR /&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/v_006/spdsug/n0vg1g427lrxzgn1fhbdqw9hm319.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/v_006/spdsug/n0vg1g427lrxzgn1fhbdqw9hm319.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I guess this is available so that costumers can migrate to Viya, without having to replace their data store. That said, SPD Server )server part) will most likely not be migrated to Viya. My guess is that SAS will create bundles with other 3rd arty DBMS, like Single Store.</description>
      <pubDate>Fri, 23 Sep 2022 06:57:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sas7bdat-work-with-partitions/m-p/834797#M329996</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2022-09-23T06:57:03Z</dc:date>
    </item>
  </channel>
</rss>

