<?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: double set that replicates a merge in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/double-set-that-replicates-a-merge/m-p/456145#M115512</link>
    <description>&lt;P&gt;Is it a single step that takes days, or is it a large program with many steps?&lt;/P&gt;
&lt;P&gt;If the latter, scan the log and identify the time-consuming steps.&lt;/P&gt;
&lt;P&gt;In both cases, run them with fullstimer, and post code and log.&lt;/P&gt;</description>
    <pubDate>Sat, 21 Apr 2018 05:47:25 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2018-04-21T05:47:25Z</dc:date>
    <item>
      <title>double set that replicates a merge</title>
      <link>https://communities.sas.com/t5/SAS-Programming/double-set-that-replicates-a-merge/m-p/456094#M115491</link>
      <description>&lt;P&gt;I have heard that&amp;nbsp;a&amp;nbsp;double set is faster than a merge, but the example that I am looking at from Art Carpenter's Innovative SAS techniques (page 219)&amp;nbsp;only keeps matching observations. I need it to do exactly what a merge would do only faster.&amp;nbsp; Know of any references that show how to do this? Thx!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Apr 2018 22:31:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/double-set-that-replicates-a-merge/m-p/456094#M115491</guid>
      <dc:creator>proctice</dc:creator>
      <dc:date>2018-04-26T22:31:18Z</dc:date>
    </item>
    <item>
      <title>Re: double set that replicates a merge</title>
      <link>https://communities.sas.com/t5/SAS-Programming/double-set-that-replicates-a-merge/m-p/456096#M115493</link>
      <description>&lt;P&gt;It would probably be helpful if you explained in some more detail with a small example. Have you looked at hash tables?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18050"&gt;@proctice&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;I have a program that takes days to run, so I am experimenting with efficiency techniques.&amp;nbsp; I have heard that&amp;nbsp;a&amp;nbsp;double set is faster than a merge, but the example that I am looking at from Art Carpenter's Innovative SAS techniques (page 219)&amp;nbsp;only keeps matching observations. I need it to do exactly what a merge would do only faster.&amp;nbsp; Know of any references that show how to do this? Thx!&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Fri, 20 Apr 2018 21:26:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/double-set-that-replicates-a-merge/m-p/456096#M115493</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-04-20T21:26:38Z</dc:date>
    </item>
    <item>
      <title>Re: double set that replicates a merge</title>
      <link>https://communities.sas.com/t5/SAS-Programming/double-set-that-replicates-a-merge/m-p/456106#M115499</link>
      <description>&lt;P&gt;Is the time concern only from the "merge"?&lt;/P&gt;
&lt;P&gt;How many records are you dealing with in your source tables?&lt;/P&gt;
&lt;P&gt;How many variables?&lt;/P&gt;
&lt;P&gt;If you are merging BY variables, how many by variables are you using?&lt;/P&gt;
&lt;P&gt;Does any of the data involved reside on a network resource? or external DBMS? Both of these are potential bottlenecks.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;or can you show the code you are currently using to combine the data sets?&lt;/P&gt;</description>
      <pubDate>Fri, 20 Apr 2018 22:22:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/double-set-that-replicates-a-merge/m-p/456106#M115499</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-04-20T22:22:26Z</dc:date>
    </item>
    <item>
      <title>Re: double set that replicates a merge</title>
      <link>https://communities.sas.com/t5/SAS-Programming/double-set-that-replicates-a-merge/m-p/456145#M115512</link>
      <description>&lt;P&gt;Is it a single step that takes days, or is it a large program with many steps?&lt;/P&gt;
&lt;P&gt;If the latter, scan the log and identify the time-consuming steps.&lt;/P&gt;
&lt;P&gt;In both cases, run them with fullstimer, and post code and log.&lt;/P&gt;</description>
      <pubDate>Sat, 21 Apr 2018 05:47:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/double-set-that-replicates-a-merge/m-p/456145#M115512</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-04-21T05:47:25Z</dc:date>
    </item>
    <item>
      <title>Re: double set that replicates a merge</title>
      <link>https://communities.sas.com/t5/SAS-Programming/double-set-that-replicates-a-merge/m-p/457982#M116192</link>
      <description>&lt;P&gt;I modified my&amp;nbsp;post&amp;nbsp;to focus on the double set technique instead of the broader issue of efficiency.&amp;nbsp; If anyone knows how to do that or has a reference, it might be useful to many.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Apr 2018 22:37:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/double-set-that-replicates-a-merge/m-p/457982#M116192</guid>
      <dc:creator>proctice</dc:creator>
      <dc:date>2018-04-26T22:37:53Z</dc:date>
    </item>
  </channel>
</rss>

