<?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: To find the Last updated Data Set in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/To-find-the-Last-updated-Data-Set/m-p/27587#M5070</link>
    <description>Have a look at SASHELP.VTABLE and the columns modate and crdate.&lt;BR /&gt;
&lt;BR /&gt;
&lt;U&gt;Resources:&lt;/U&gt;&lt;BR /&gt;
&lt;B&gt;-&lt;/B&gt; Sample 25436: Demonstrates basic SQL DICTIONARY statements -&amp;gt; &lt;A href="http://support.sas.com/kb/25/436.html" target="_blank"&gt;http://support.sas.com/kb/25/436.html&lt;/A&gt;&lt;BR /&gt;
&lt;B&gt;-&lt;/B&gt; Dictionary Tables and Views: Essential Tools for Serious Applications -&amp;gt; &lt;A href="http://www2.sas.com/proceedings/sugi29/237-29.pdf" target="_blank"&gt;http://www2.sas.com/proceedings/sugi29/237-29.pdf&lt;/A&gt;&lt;BR /&gt;
&lt;B&gt;-&lt;/B&gt; An Introduction to SAS® Dictionary Tables -&amp;gt; &lt;A href="http://www2.sas.com/proceedings/forum2007/235-2007.pdf" target="_blank"&gt;http://www2.sas.com/proceedings/forum2007/235-2007.pdf&lt;/A&gt;</description>
    <pubDate>Wed, 06 May 2009 07:48:45 GMT</pubDate>
    <dc:creator>GertNissen</dc:creator>
    <dc:date>2009-05-06T07:48:45Z</dc:date>
    <item>
      <title>To find the Last updated Data Set</title>
      <link>https://communities.sas.com/t5/SAS-Programming/To-find-the-Last-updated-Data-Set/m-p/27586#M5069</link>
      <description>data x1;&lt;BR /&gt;
input id sal ;&lt;BR /&gt;
cards;&lt;BR /&gt;
12 23 &lt;BR /&gt;
78 45 &lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
data x2;&lt;BR /&gt;
input id sal;&lt;BR /&gt;
cards;&lt;BR /&gt;
23 56 &lt;BR /&gt;
78 59 &lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
data x3;&lt;BR /&gt;
input id sal;&lt;BR /&gt;
cards;&lt;BR /&gt;
02 56 &lt;BR /&gt;
45 86 &lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
data x_fin;&lt;BR /&gt;
set x1 x3 x2;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
data x5;&lt;BR /&gt;
input id sal;&lt;BR /&gt;
cards;&lt;BR /&gt;
02 56 &lt;BR /&gt;
45 86 &lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
data x_fin;&lt;BR /&gt;
set x1 x3 x2 x5 ;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
data x6;&lt;BR /&gt;
input id sal;&lt;BR /&gt;
cards;&lt;BR /&gt;
02 56 &lt;BR /&gt;
45 86 &lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
data x_fin;&lt;BR /&gt;
set x1 x3 x2 x5 x6;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
i have created x_fin dataset by keeping x1,x2,x3 and after that i have added x5 and updated and after that i have added x6 to the dataset x_fin now.i want the dataset that was recently updated to x_fin and i should move that observations to a new dataset as x_updsets.so please help me out this is a example as Real time daily many datesets will come and set to one dataset now i want to find which dataset was added to it recently</description>
      <pubDate>Wed, 06 May 2009 05:07:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/To-find-the-Last-updated-Data-Set/m-p/27586#M5069</guid>
      <dc:creator>R_Win</dc:creator>
      <dc:date>2009-05-06T05:07:52Z</dc:date>
    </item>
    <item>
      <title>Re: To find the Last updated Data Set</title>
      <link>https://communities.sas.com/t5/SAS-Programming/To-find-the-Last-updated-Data-Set/m-p/27587#M5070</link>
      <description>Have a look at SASHELP.VTABLE and the columns modate and crdate.&lt;BR /&gt;
&lt;BR /&gt;
&lt;U&gt;Resources:&lt;/U&gt;&lt;BR /&gt;
&lt;B&gt;-&lt;/B&gt; Sample 25436: Demonstrates basic SQL DICTIONARY statements -&amp;gt; &lt;A href="http://support.sas.com/kb/25/436.html" target="_blank"&gt;http://support.sas.com/kb/25/436.html&lt;/A&gt;&lt;BR /&gt;
&lt;B&gt;-&lt;/B&gt; Dictionary Tables and Views: Essential Tools for Serious Applications -&amp;gt; &lt;A href="http://www2.sas.com/proceedings/sugi29/237-29.pdf" target="_blank"&gt;http://www2.sas.com/proceedings/sugi29/237-29.pdf&lt;/A&gt;&lt;BR /&gt;
&lt;B&gt;-&lt;/B&gt; An Introduction to SAS® Dictionary Tables -&amp;gt; &lt;A href="http://www2.sas.com/proceedings/forum2007/235-2007.pdf" target="_blank"&gt;http://www2.sas.com/proceedings/forum2007/235-2007.pdf&lt;/A&gt;</description>
      <pubDate>Wed, 06 May 2009 07:48:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/To-find-the-Last-updated-Data-Set/m-p/27587#M5070</guid>
      <dc:creator>GertNissen</dc:creator>
      <dc:date>2009-05-06T07:48:45Z</dc:date>
    </item>
  </channel>
</rss>

