<?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 Libname and proc contents in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Libname-and-proc-contents/m-p/355331#M64174</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to see the variables in a pdb. &amp;nbsp;here's my code:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;libname pdb '/a/b/c/d/e/2017/0501';&lt;/P&gt;&lt;P&gt;proc contents data=pdb;&lt;/P&gt;&lt;P&gt;proc print data=pdb;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;what am i doing wrong here? &amp;nbsp;please help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 02 May 2017 17:38:53 GMT</pubDate>
    <dc:creator>prolifious</dc:creator>
    <dc:date>2017-05-02T17:38:53Z</dc:date>
    <item>
      <title>Libname and proc contents</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Libname-and-proc-contents/m-p/355331#M64174</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to see the variables in a pdb. &amp;nbsp;here's my code:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;libname pdb '/a/b/c/d/e/2017/0501';&lt;/P&gt;&lt;P&gt;proc contents data=pdb;&lt;/P&gt;&lt;P&gt;proc print data=pdb;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;what am i doing wrong here? &amp;nbsp;please help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2017 17:38:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Libname-and-proc-contents/m-p/355331#M64174</guid>
      <dc:creator>prolifious</dc:creator>
      <dc:date>2017-05-02T17:38:53Z</dc:date>
    </item>
    <item>
      <title>Re: Libname and proc contents</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Libname-and-proc-contents/m-p/355335#M64175</link>
      <description>&lt;P&gt;We don't know what you are doing wrong, because you haven't explained what happens that you think is wrong. Perhaps you could explain what you see or don't see that is wrong, and why it is wrong.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2017 17:43:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Libname-and-proc-contents/m-p/355335#M64175</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2017-05-02T17:43:49Z</dc:date>
    </item>
    <item>
      <title>Re: Libname and proc contents</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Libname-and-proc-contents/m-p/355338#M64176</link>
      <description>&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;in the log, it notes the the libref was successfully assigned, but the error noted under the proc contents says &amp;nbsp;"file.work.pdb.data does not exist". &amp;nbsp;do i need a data step?&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2017 17:49:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Libname-and-proc-contents/m-p/355338#M64176</guid>
      <dc:creator>prolifious</dc:creator>
      <dc:date>2017-05-02T17:49:48Z</dc:date>
    </item>
    <item>
      <title>Re: Libname and proc contents</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Libname-and-proc-contents/m-p/355340#M64177</link>
      <description>&lt;P&gt;You created a libref that points to a directory and then asked PROC CONTENTS to show you the variables in an unrelated WORK dataset. &amp;nbsp;If you know the member name of the dataset want then use that in the proc contents statement.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc contents data=pdb.mydataset; run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Or if you want to see the contetns for all of the datasets in the library then use the _ALL_ keyword.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc contents data=pdb._all_; run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 02 May 2017 17:53:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Libname-and-proc-contents/m-p/355340#M64177</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2017-05-02T17:53:30Z</dc:date>
    </item>
    <item>
      <title>Re: Libname and proc contents</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Libname-and-proc-contents/m-p/355341#M64178</link>
      <description>&lt;P&gt;Thank you very much, Tom.&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2017 17:59:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Libname-and-proc-contents/m-p/355341#M64178</guid>
      <dc:creator>prolifious</dc:creator>
      <dc:date>2017-05-02T17:59:34Z</dc:date>
    </item>
  </channel>
</rss>

