<?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 Column name in Schema using SAS EG in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Finding-Column-name-in-Schema-using-SAS-EG/m-p/333790#M22190</link>
    <description>&lt;P&gt;In EG it is often easier to use the views on the dictionary tables as they can be found in the SASHELP library. In your case the view would be SASHELP.VCOLUMN.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can drop this table on the canvas and use a&amp;nbsp;filter&amp;amp;sort or query builder on it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps,&lt;/P&gt;
&lt;P&gt;- Jan.&lt;/P&gt;</description>
    <pubDate>Fri, 17 Feb 2017 14:54:42 GMT</pubDate>
    <dc:creator>jklaverstijn</dc:creator>
    <dc:date>2017-02-17T14:54:42Z</dc:date>
    <item>
      <title>Finding Column name in Schema using SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Finding-Column-name-in-Schema-using-SAS-EG/m-p/333788#M22188</link>
      <description>&lt;P&gt;Hi, I am relatively new to SAS programming.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to locate tables with a column name (or like if possible) from a library in SAS EG.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I use to have a&amp;nbsp;code for this in SAS base where it hits dictionary.columns but that does not work for SAS EG.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can anyone please assist?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Following is the SAS base code I use to use&lt;/P&gt;&lt;PRE&gt;proc sql ;
  select name 
  from dictionary.columns
  where memname = 'mydata'
  ;
quit ;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Thank you.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Feb 2017 14:46:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Finding-Column-name-in-Schema-using-SAS-EG/m-p/333788#M22188</guid>
      <dc:creator>amity21</dc:creator>
      <dc:date>2017-02-17T14:46:14Z</dc:date>
    </item>
    <item>
      <title>Re: Finding Column name in Schema using SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Finding-Column-name-in-Schema-using-SAS-EG/m-p/333789#M22189</link>
      <description>&lt;P&gt;Use&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;select memname from dictionary.columns
where upcase(name) = 'MYCOL' and upcase(libname) = 'MYLIB'&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;to find all datasets in mylib that have a column mycol.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Feb 2017 14:52:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Finding-Column-name-in-Schema-using-SAS-EG/m-p/333789#M22189</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-02-17T14:52:09Z</dc:date>
    </item>
    <item>
      <title>Re: Finding Column name in Schema using SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Finding-Column-name-in-Schema-using-SAS-EG/m-p/333790#M22190</link>
      <description>&lt;P&gt;In EG it is often easier to use the views on the dictionary tables as they can be found in the SASHELP library. In your case the view would be SASHELP.VCOLUMN.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can drop this table on the canvas and use a&amp;nbsp;filter&amp;amp;sort or query builder on it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps,&lt;/P&gt;
&lt;P&gt;- Jan.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Feb 2017 14:54:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Finding-Column-name-in-Schema-using-SAS-EG/m-p/333790#M22190</guid>
      <dc:creator>jklaverstijn</dc:creator>
      <dc:date>2017-02-17T14:54:42Z</dc:date>
    </item>
  </channel>
</rss>

