<?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: updating from multiple table in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/updating-from-multiple-table/m-p/593501#M170323</link>
    <description>&lt;P&gt;So, what should the "final table" be for these data?&lt;/P&gt;</description>
    <pubDate>Wed, 02 Oct 2019 18:20:02 GMT</pubDate>
    <dc:creator>PGStats</dc:creator>
    <dc:date>2019-10-02T18:20:02Z</dc:date>
    <item>
      <title>updating from multiple table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/updating-from-multiple-table/m-p/593481#M170313</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;i have four datasets as follows&lt;/P&gt;&lt;P&gt;data one&lt;/P&gt;&lt;P&gt;col1 cls_id&lt;BR /&gt;1 a&lt;BR /&gt;2 c&lt;BR /&gt;3 a&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;data two&lt;/P&gt;&lt;P&gt;col1 cls_id&lt;BR /&gt;1 d&lt;BR /&gt;6 e&lt;BR /&gt;8 d&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;data three&lt;/P&gt;&lt;P&gt;col1 cls_id&lt;BR /&gt;7 h&lt;BR /&gt;9 f&lt;BR /&gt;8 h&lt;/P&gt;&lt;P&gt;data four&lt;/P&gt;&lt;P&gt;col1 cls_id&lt;BR /&gt;10 m&lt;BR /&gt;5 l&lt;BR /&gt;9 m&lt;/P&gt;&lt;P&gt;Now from these tables i need to create a final table so that each common element from these tables have a common cls_id&lt;BR /&gt;and all associated elements to that common element in different table also do have same common cls_id.&lt;/P&gt;&lt;P&gt;* FYI Actually i was running optnet to link elements but because of data size i am not able to run in a single go.&lt;BR /&gt;Hence,I had to split the data and run optnet and try to merge these four tables .&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;In table one and two element 1 is common and 8 is a associated element further 8 is also present in table 3 with&lt;BR /&gt;7 attached to it.&lt;/P&gt;&lt;P&gt;hence 1,3,7,8 should share same cluster id&lt;/P&gt;&lt;P&gt;similarly 9 and 10 should have same id&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Any help would be greatly appreciated.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Oct 2019 17:27:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/updating-from-multiple-table/m-p/593481#M170313</guid>
      <dc:creator>Rohit_1990</dc:creator>
      <dc:date>2019-10-02T17:27:22Z</dc:date>
    </item>
    <item>
      <title>Re: updating from multiple table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/updating-from-multiple-table/m-p/593497#M170320</link>
      <description>So you want up to 4 separate cls_id columns per col1 or up to 4 cls_id records per col1?</description>
      <pubDate>Wed, 02 Oct 2019 18:14:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/updating-from-multiple-table/m-p/593497#M170320</guid>
      <dc:creator>tomrvincent</dc:creator>
      <dc:date>2019-10-02T18:14:39Z</dc:date>
    </item>
    <item>
      <title>Re: updating from multiple table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/updating-from-multiple-table/m-p/593501#M170323</link>
      <description>&lt;P&gt;So, what should the "final table" be for these data?&lt;/P&gt;</description>
      <pubDate>Wed, 02 Oct 2019 18:20:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/updating-from-multiple-table/m-p/593501#M170323</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2019-10-02T18:20:02Z</dc:date>
    </item>
    <item>
      <title>Re: updating from multiple table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/updating-from-multiple-table/m-p/593580#M170369</link>
      <description>&lt;P&gt;the final table should be something like this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;col1&amp;nbsp; &amp;nbsp; final_cls_id&lt;/P&gt;&lt;P&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; h&lt;/P&gt;&lt;P&gt;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; c&amp;nbsp;&lt;/P&gt;&lt;P&gt;3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; h&lt;/P&gt;&lt;P&gt;5&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; l&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;6&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; e&lt;/P&gt;&lt;P&gt;7&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; h&lt;/P&gt;&lt;P&gt;8&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; h&lt;/P&gt;&lt;P&gt;9&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; m&lt;/P&gt;&lt;P&gt;10&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; m&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;so since value 1 in&amp;nbsp; col1 indifferent tables i associated to 3 &amp;amp; 8&amp;nbsp; and 8 is again attached to 7 as they have same cls_id in different tables.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hence I have assigned same cls_id to all these values.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a table which contains 70 million records but I am able to run proc optnet on some 15 million records only . Is there any way to run optnet based on group by condition.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Oct 2019 03:16:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/updating-from-multiple-table/m-p/593580#M170369</guid>
      <dc:creator>Rohit_1990</dc:creator>
      <dc:date>2019-10-03T03:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: updating from multiple table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/updating-from-multiple-table/m-p/593586#M170374</link>
      <description>&lt;P&gt;Are you using the concomp algorithm? What do you use as node labels (IDs)?&lt;/P&gt;</description>
      <pubDate>Thu, 03 Oct 2019 03:47:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/updating-from-multiple-table/m-p/593586#M170374</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2019-10-03T03:47:26Z</dc:date>
    </item>
    <item>
      <title>Re: updating from multiple table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/updating-from-multiple-table/m-p/593605#M170385</link>
      <description>Yes I am using concomp algorithm</description>
      <pubDate>Thu, 03 Oct 2019 06:04:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/updating-from-multiple-table/m-p/593605#M170385</guid>
      <dc:creator>Rohit_1990</dc:creator>
      <dc:date>2019-10-03T06:04:32Z</dc:date>
    </item>
    <item>
      <title>Re: updating from multiple table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/updating-from-multiple-table/m-p/593916#M170547</link>
      <description>&lt;P&gt;What do you use as node labels (IDs). Numbers or character strings?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please post your optnet code.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Oct 2019 20:56:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/updating-from-multiple-table/m-p/593916#M170547</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2019-10-03T20:56:37Z</dc:date>
    </item>
    <item>
      <title>Re: updating from multiple table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/updating-from-multiple-table/m-p/594087#M170620</link>
      <description>I am using number strings</description>
      <pubDate>Fri, 04 Oct 2019 13:05:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/updating-from-multiple-table/m-p/594087#M170620</guid>
      <dc:creator>Rohit_1990</dc:creator>
      <dc:date>2019-10-04T13:05:11Z</dc:date>
    </item>
  </channel>
</rss>

