<?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: proc datasets in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-datasets/m-p/167303#M12866</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;they all are sas data sets only. but i don't understand your statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"&lt;STRONG&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;If they are SAS datasets of interest I would create a library pointing to that folder as the first step.&lt;/SPAN&gt;"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Thanks Ballardw...&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 08 Feb 2014 01:39:09 GMT</pubDate>
    <dc:creator>sas_9</dc:creator>
    <dc:date>2014-02-08T01:39:09Z</dc:date>
    <item>
      <title>proc datasets</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-datasets/m-p/167301#M12864</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends - this is tricky for me if someone can help please...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have one folder name "marketdataset" and there are lot of data sets in it. I want to know if i want to use "proc dataset" with this to get all datasets name - how can i do that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Feb 2014 23:20:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-datasets/m-p/167301#M12864</guid>
      <dc:creator>sas_9</dc:creator>
      <dc:date>2014-02-07T23:20:26Z</dc:date>
    </item>
    <item>
      <title>Re: proc datasets</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-datasets/m-p/167302#M12865</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If they are SAS datasets of interest I would create a library pointing to that folder as the first step.&lt;/P&gt;&lt;P&gt;If they are not, then you'll likely want to import them into SAS datasets and thats going to raise questions about file types and options for importing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Which case are you looking at?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Feb 2014 00:07:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-datasets/m-p/167302#M12865</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2014-02-08T00:07:03Z</dc:date>
    </item>
    <item>
      <title>Re: proc datasets</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-datasets/m-p/167303#M12866</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;they all are sas data sets only. but i don't understand your statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"&lt;STRONG&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;If they are SAS datasets of interest I would create a library pointing to that folder as the first step.&lt;/SPAN&gt;"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Thanks Ballardw...&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Feb 2014 01:39:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-datasets/m-p/167303#M12866</guid>
      <dc:creator>sas_9</dc:creator>
      <dc:date>2014-02-08T01:39:09Z</dc:date>
    </item>
    <item>
      <title>Re: proc datasets</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-datasets/m-p/167304#M12867</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Assuming the datasets in question are SAS datasets, it sounds like dictionary tables are your friend here;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;P&gt;libname inputs &amp;lt;location of your data&amp;gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; create table myData as&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; select memname&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from dictionary.tables&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where libname eq 'INPUTS' /* Note your libname reference here must be upper case */&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Feb 2014 10:45:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-datasets/m-p/167304#M12867</guid>
      <dc:creator>HJD24</dc:creator>
      <dc:date>2014-02-08T10:45:53Z</dc:date>
    </item>
    <item>
      <title>Re: proc datasets</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-datasets/m-p/167305#M12868</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IT WORKED ABSOLUTELY FINE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks - HJD24&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Feb 2014 21:14:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-datasets/m-p/167305#M12868</guid>
      <dc:creator>sas_9</dc:creator>
      <dc:date>2014-02-12T21:14:17Z</dc:date>
    </item>
  </channel>
</rss>

