<?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: Store results of proc datasets in a table in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Store-results-of-proc-datasets-in-a-table/m-p/583513#M166111</link>
    <description>&lt;P&gt;Then that's in SASHELP.VLIBNAM&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/44456"&gt;@upadhi&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;hi Paige,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your reply. But I am not looking for tables info. I am interested in the directory structure. example: physical name, access permission, owner, etc. of the library&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 23 Aug 2019 15:26:13 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2019-08-23T15:26:13Z</dc:date>
    <item>
      <title>Store results of proc datasets in a table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Store-results-of-proc-datasets-in-a-table/m-p/583482#M166102</link>
      <description>&lt;P&gt;Team,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want to store the results of proc datasets in a library.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;below is the code i am using:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;proc datasets lib=acm;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am getting report:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/31977i9AE333365D221037/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But i want to store the info related to library in a dataset.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How the same can be achieved?&lt;/P&gt;</description>
      <pubDate>Fri, 23 Aug 2019 14:22:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Store-results-of-proc-datasets-in-a-table/m-p/583482#M166102</guid>
      <dc:creator>upadhi</dc:creator>
      <dc:date>2019-08-23T14:22:41Z</dc:date>
    </item>
    <item>
      <title>Re: Store results of proc datasets in a table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Store-results-of-proc-datasets-in-a-table/m-p/583484#M166103</link>
      <description>&lt;P&gt;The information you see is already stored for you in the SAS dictionary tables.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SASHELP.VTABLE has the information about each data set in a Library.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Aug 2019 14:26:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Store-results-of-proc-datasets-in-a-table/m-p/583484#M166103</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-08-23T14:26:38Z</dc:date>
    </item>
    <item>
      <title>Re: Store results of proc datasets in a table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Store-results-of-proc-datasets-in-a-table/m-p/583488#M166105</link>
      <description>&lt;P&gt;hi Paige,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your reply. But I am not looking for tables info. I am interested in the directory structure. example: physical name, access permission, owner, etc. of the library&lt;/P&gt;</description>
      <pubDate>Fri, 23 Aug 2019 14:31:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Store-results-of-proc-datasets-in-a-table/m-p/583488#M166105</guid>
      <dc:creator>upadhi</dc:creator>
      <dc:date>2019-08-23T14:31:40Z</dc:date>
    </item>
    <item>
      <title>Re: Store results of proc datasets in a table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Store-results-of-proc-datasets-in-a-table/m-p/583489#M166106</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods output directory=directory;
proc datasets lib=acm;
run; quit;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 23 Aug 2019 14:40:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Store-results-of-proc-datasets-in-a-table/m-p/583489#M166106</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-08-23T14:40:46Z</dc:date>
    </item>
    <item>
      <title>Re: Store results of proc datasets in a table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Store-results-of-proc-datasets-in-a-table/m-p/583513#M166111</link>
      <description>&lt;P&gt;Then that's in SASHELP.VLIBNAM&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/44456"&gt;@upadhi&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;hi Paige,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your reply. But I am not looking for tables info. I am interested in the directory structure. example: physical name, access permission, owner, etc. of the library&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Aug 2019 15:26:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Store-results-of-proc-datasets-in-a-table/m-p/583513#M166111</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-08-23T15:26:13Z</dc:date>
    </item>
  </channel>
</rss>

