<?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: SAS Libraries in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/SAS-Libraries/m-p/358553#M84289</link>
    <description>&lt;P&gt;They wanted to know if you're familiar with Dictionary tables.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can find details in many papers on LEXJANSEN.COM&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Common usages:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create data dictionary&lt;/P&gt;
&lt;P&gt;Automate creation of labels or rename variables&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 14 May 2017 13:34:35 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2017-05-14T13:34:35Z</dc:date>
    <item>
      <title>SAS Libraries</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Libraries/m-p/358544#M84286</link>
      <description>&lt;P&gt;hello everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;few days back i have attended an interview, the interviewer asked a question:-&lt;/P&gt;&lt;P&gt;consider a case, there are 50 libraries, each libraries has some sas datasets. so i want to list only those sasdatas &amp;nbsp;which has a column or variable X in all the sas datasets from all the libraries?????&lt;/P&gt;&lt;P&gt;plzz help me&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 14 May 2017 11:47:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Libraries/m-p/358544#M84286</guid>
      <dc:creator>santhoshlekkala</dc:creator>
      <dc:date>2017-05-14T11:47:36Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Libraries</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Libraries/m-p/358547#M84287</link>
      <description>&lt;P&gt;Ok in this case, sashelp.vcolumns will help us. in this we could check all the libraries, datasets and the variables they have.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;in your case check like this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data want;&lt;/P&gt;
&lt;P&gt;set sashelp.vcolumns;&lt;/P&gt;
&lt;P&gt;where name='X';&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This will subset on the list of libraries(libname) and datasets (memname) that have variable with name X.&lt;/P&gt;</description>
      <pubDate>Sun, 14 May 2017 13:08:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Libraries/m-p/358547#M84287</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2017-05-14T13:08:31Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Libraries</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Libraries/m-p/358548#M84288</link>
      <description>&lt;P&gt;Alternatively by proc sql also we could achieve the same result&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
create table want as select libname, memname , name from dictionary.columns where name='X';
quit;


&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 14 May 2017 13:42:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Libraries/m-p/358548#M84288</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2017-05-14T13:42:04Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Libraries</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Libraries/m-p/358553#M84289</link>
      <description>&lt;P&gt;They wanted to know if you're familiar with Dictionary tables.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can find details in many papers on LEXJANSEN.COM&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Common usages:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create data dictionary&lt;/P&gt;
&lt;P&gt;Automate creation of labels or rename variables&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 14 May 2017 13:34:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Libraries/m-p/358553#M84289</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-05-14T13:34:35Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Libraries</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-Libraries/m-p/358801#M84346</link>
      <description>&lt;P&gt;tq for help&lt;/P&gt;</description>
      <pubDate>Mon, 15 May 2017 17:37:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-Libraries/m-p/358801#M84346</guid>
      <dc:creator>santhoshlekkala</dc:creator>
      <dc:date>2017-05-15T17:37:55Z</dc:date>
    </item>
  </channel>
</rss>

