<?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 how we know library of a table in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/how-we-know-library-of-a-table/m-p/34135#M6712</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kindly let me know how we know library name of a table by using base programing code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ashwini&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 20 Jan 2012 10:45:25 GMT</pubDate>
    <dc:creator>Ashwini</dc:creator>
    <dc:date>2012-01-20T10:45:25Z</dc:date>
    <item>
      <title>how we know library of a table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-we-know-library-of-a-table/m-p/34135#M6712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kindly let me know how we know library name of a table by using base programing code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ashwini&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jan 2012 10:45:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-we-know-library-of-a-table/m-p/34135#M6712</guid>
      <dc:creator>Ashwini</dc:creator>
      <dc:date>2012-01-20T10:45:25Z</dc:date>
    </item>
    <item>
      <title>how we know library of a table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-we-know-library-of-a-table/m-p/34136#M6713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;An easy way is useing dictionary table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;proc sql;
 select libname,memname
&amp;nbsp; from dictionary.members
&amp;nbsp;&amp;nbsp; where memname='CLASS';
quit;


&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ksharp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jan 2012 11:57:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-we-know-library-of-a-table/m-p/34136#M6713</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2012-01-20T11:57:58Z</dc:date>
    </item>
    <item>
      <title>how we know library of a table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-we-know-library-of-a-table/m-p/34137#M6714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;While KSharp may have already answered your question, I'm not sure!&amp;nbsp; Is that what you meant or were you asking something else?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jan 2012 12:03:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-we-know-library-of-a-table/m-p/34137#M6714</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-01-20T12:03:33Z</dc:date>
    </item>
    <item>
      <title>how we know library of a table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-we-know-library-of-a-table/m-p/34138#M6715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Dear Ksharp,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it table is an sql table then we use Dictionay.But i have table ,i don't know the library or location of table .I know only the name of table.How we can search a table by using base code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regard,&lt;/P&gt;&lt;P&gt;Ashwini&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jan 2012 12:10:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-we-know-library-of-a-table/m-p/34138#M6715</guid>
      <dc:creator>Ashwini</dc:creator>
      <dc:date>2012-01-20T12:10:02Z</dc:date>
    </item>
    <item>
      <title>how we know library of a table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-we-know-library-of-a-table/m-p/34139#M6716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What Ksharp referred to was a table of tables, not a sql specific table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are talking about a table that is already in a libname that has already been assigned during a session, then his proposed code should accomplish what you want.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jan 2012 12:13:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-we-know-library-of-a-table/m-p/34139#M6716</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-01-20T12:13:50Z</dc:date>
    </item>
    <item>
      <title>how we know library of a table</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-we-know-library-of-a-table/m-p/34140#M6717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As long as you know the name of table , the code you give you all the library name which contains the table name you want to search.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;E.X.&lt;/P&gt;&lt;P&gt;If you want to find all the library which contain a table named 'CLASS' ,then the code below will list all the libraries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt; select libname,memname&lt;/P&gt;&lt;P&gt;&amp;nbsp; from dictionary.members&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; where memname='CLASS';&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ksharp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jan 2012 12:15:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-we-know-library-of-a-table/m-p/34140#M6717</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2012-01-20T12:15:55Z</dc:date>
    </item>
  </channel>
</rss>

