<?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: Finding a variable in a datamart using SAS.  Is it possible in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Finding-a-variable-in-a-datamart-using-SAS-Is-it-possible/m-p/461003#M29724</link>
    <description>&lt;P&gt;Sorry, I have forgotten to incluce the code&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sql;&lt;BR /&gt;select name,memname&lt;BR /&gt;from dictionary.columns&lt;BR /&gt;where libname EQ 'MYLIBRARY' and UPCASE(name) EQ 'CUSTOMERNUMBER' ;&lt;BR /&gt;quit;&lt;BR /&gt;run;&lt;/P&gt;</description>
    <pubDate>Wed, 09 May 2018 13:23:40 GMT</pubDate>
    <dc:creator>alepage</dc:creator>
    <dc:date>2018-05-09T13:23:40Z</dc:date>
    <item>
      <title>Finding a variable in a datamart using SAS.  Is it possible</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Finding-a-variable-in-a-datamart-using-SAS-Is-it-possible/m-p/460802#M29709</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have used the following code as usual to find in which dataset a variable may exist in a library.&lt;/P&gt;&lt;P&gt;The problem, it seems that this code is not working with a DataMart.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does someone may have an idea how to do that?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 May 2018 19:00:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Finding-a-variable-in-a-datamart-using-SAS-Is-it-possible/m-p/460802#M29709</guid>
      <dc:creator>alepage</dc:creator>
      <dc:date>2018-05-08T19:00:17Z</dc:date>
    </item>
    <item>
      <title>Re: Finding a variable in a datamart using SAS.  Is it possible</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Finding-a-variable-in-a-datamart-using-SAS-Is-it-possible/m-p/460819#M29710</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/76331"&gt;@alepage&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have used the following code as usual to find in which dataset a variable may exist in a library.&lt;/P&gt;
&lt;P&gt;The problem, it seems that this code is not working with a DataMart.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Does someone may have an idea how to do that?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;What code?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the data mart is not SAS data then SAS would likely have to connect to the mart and query the tools used by that data source to find things from the meta data.&lt;/P&gt;</description>
      <pubDate>Tue, 08 May 2018 19:41:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Finding-a-variable-in-a-datamart-using-SAS-Is-it-possible/m-p/460819#M29710</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-05-08T19:41:08Z</dc:date>
    </item>
    <item>
      <title>Re: Finding a variable in a datamart using SAS.  Is it possible</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Finding-a-variable-in-a-datamart-using-SAS-Is-it-possible/m-p/461003#M29724</link>
      <description>&lt;P&gt;Sorry, I have forgotten to incluce the code&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sql;&lt;BR /&gt;select name,memname&lt;BR /&gt;from dictionary.columns&lt;BR /&gt;where libname EQ 'MYLIBRARY' and UPCASE(name) EQ 'CUSTOMERNUMBER' ;&lt;BR /&gt;quit;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Wed, 09 May 2018 13:23:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Finding-a-variable-in-a-datamart-using-SAS-Is-it-possible/m-p/461003#M29724</guid>
      <dc:creator>alepage</dc:creator>
      <dc:date>2018-05-09T13:23:40Z</dc:date>
    </item>
    <item>
      <title>Re: Finding a variable in a datamart using SAS.  Is it possible</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Finding-a-variable-in-a-datamart-using-SAS-Is-it-possible/m-p/461180#M29735</link>
      <description>&lt;P&gt;What do you mean by a datamart? What database is this running on and how are you connecting to it? Please bear in mind that the DICTIONARY tables are optimised for use with SAS data libraries and may not work so well with external databases. If you are dealing with an external database like Oracle or SQL Server it would be preferable to query the database's dictionary tables directly. &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 May 2018 20:24:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Finding-a-variable-in-a-datamart-using-SAS-Is-it-possible/m-p/461180#M29735</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2018-05-09T20:24:10Z</dc:date>
    </item>
  </channel>
</rss>

