<?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: Regarding SPDS Performance in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Regarding-SPDS-Performance/m-p/98364#M290654</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The usage guide have plenty of examples how to create clusters with minmaxvarlist.&lt;/P&gt;&lt;P&gt;In the query, you need no special syntax, just an ordinary where-clause.&lt;/P&gt;&lt;P&gt;The benefit of clusters comes if you are able to split data on one or more classification columns in your data. A typical column cold be a date or other time period value.&lt;/P&gt;&lt;P&gt;The cluster evaluates the where-clause and are then "automatically" reading data from the only necessary member tables.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 18 Oct 2012 14:29:57 GMT</pubDate>
    <dc:creator>LinusH</dc:creator>
    <dc:date>2012-10-18T14:29:57Z</dc:date>
    <item>
      <title>Regarding SPDS Performance</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Regarding-SPDS-Performance/m-p/98359#M290649</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How to increase the SPDS performance......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By Macro variables....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2012 20:39:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Regarding-SPDS-Performance/m-p/98359#M290649</guid>
      <dc:creator>Bhoopesh</dc:creator>
      <dc:date>2012-10-17T20:39:47Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding SPDS Performance</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Regarding-SPDS-Performance/m-p/98360#M290650</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you search the SAS website?&amp;nbsp; Here is a page with a number of articles:&amp;nbsp; &lt;A href="http://support.sas.com/resources/papers/tnote/tnote_spds.html"&gt;http://support.sas.com/resources/papers/tnote/tnote_spds.html&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2012 21:35:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Regarding-SPDS-Performance/m-p/98360#M290650</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2012-10-17T21:35:44Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding SPDS Performance</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Regarding-SPDS-Performance/m-p/98361#M290651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Tom..Yes will have a look at it...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you know how to access two clusters from a cluster table at a time in SPDS using MEMNUM option..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like for e.g out of 8 clusters..i need to access 4th and 5th cluster..How to do that..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2012 02:23:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Regarding-SPDS-Performance/m-p/98361#M290651</guid>
      <dc:creator>Bhoopesh</dc:creator>
      <dc:date>2012-10-18T02:23:54Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding SPDS Performance</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Regarding-SPDS-Performance/m-p/98362#M290652</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't have SPDS att my fingertips right now, but my interpretation of the documentation is that the MEMNUM option only lets you specify one memnum at a time.&lt;/P&gt;&lt;P&gt;Can you specify what you mean by "access"? If you mean querying, you need to query the cluster twice:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set spdslib.mycluster(memnum=3)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; spdslib.mycluster(memnum=5);&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But why do you need to access it by memnum? Depending on maintenance of the cluster, members can change memnum over time. I think it's more flexible to query based on minmaxvarlist, so yo don't have to be dependant on the internal structure of the cluster.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2012 08:22:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Regarding-SPDS-Performance/m-p/98362#M290652</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2012-10-18T08:22:52Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding SPDS Performance</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Regarding-SPDS-Performance/m-p/98363#M290653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Above code is not working...It gives as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ERROR: Invalid MEMNUM value specified for cluster member open.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to use MINMAXVARLIST on a particular column from a table..Can you send me some pseudo code for it...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2012 13:30:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Regarding-SPDS-Performance/m-p/98363#M290653</guid>
      <dc:creator>Bhoopesh</dc:creator>
      <dc:date>2012-10-18T13:30:53Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding SPDS Performance</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Regarding-SPDS-Performance/m-p/98364#M290654</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The usage guide have plenty of examples how to create clusters with minmaxvarlist.&lt;/P&gt;&lt;P&gt;In the query, you need no special syntax, just an ordinary where-clause.&lt;/P&gt;&lt;P&gt;The benefit of clusters comes if you are able to split data on one or more classification columns in your data. A typical column cold be a date or other time period value.&lt;/P&gt;&lt;P&gt;The cluster evaluates the where-clause and are then "automatically" reading data from the only necessary member tables.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2012 14:29:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Regarding-SPDS-Performance/m-p/98364#M290654</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2012-10-18T14:29:57Z</dc:date>
    </item>
  </channel>
</rss>

