<?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 to find table name based on column in SAS DI or in SAS SMC in Administration and Deployment</title>
    <link>https://communities.sas.com/t5/Administration-and-Deployment/How-to-find-table-name-based-on-column-in-SAS-DI-or-in-SAS-SMC/m-p/912843#M27905</link>
    <description>&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I know only the column name(PART_NUMBER)&amp;nbsp; but not the table name. I have searched for the column name in SAS DI and I found it . when I try to see the properties but it is not let me see it. How can I find the table name based on column in SAS DI/SAS SMC.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sathya66_0-1706110194298.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/92928iD2AAA5B01ED4629F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="sathya66_0-1706110194298.png" alt="sathya66_0-1706110194298.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 24 Jan 2024 15:32:22 GMT</pubDate>
    <dc:creator>sathya66</dc:creator>
    <dc:date>2024-01-24T15:32:22Z</dc:date>
    <item>
      <title>How to find table name based on column in SAS DI or in SAS SMC</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/How-to-find-table-name-based-on-column-in-SAS-DI-or-in-SAS-SMC/m-p/912843#M27905</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I know only the column name(PART_NUMBER)&amp;nbsp; but not the table name. I have searched for the column name in SAS DI and I found it . when I try to see the properties but it is not let me see it. How can I find the table name based on column in SAS DI/SAS SMC.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sathya66_0-1706110194298.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/92928iD2AAA5B01ED4629F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="sathya66_0-1706110194298.png" alt="sathya66_0-1706110194298.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jan 2024 15:32:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/How-to-find-table-name-based-on-column-in-SAS-DI-or-in-SAS-SMC/m-p/912843#M27905</guid>
      <dc:creator>sathya66</dc:creator>
      <dc:date>2024-01-24T15:32:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to find table name based on column in SAS DI or in SAS SMC</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/How-to-find-table-name-based-on-column-in-SAS-DI-or-in-SAS-SMC/m-p/912896#M27906</link>
      <description>&lt;P&gt;You can use the Dictionary Tables for this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
  create table want as
  select *
  from dictionary.columns
  where libname = 'SASHELP'
  and upcase(name) = 'AGE';
quit; &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jan 2024 20:26:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/How-to-find-table-name-based-on-column-in-SAS-DI-or-in-SAS-SMC/m-p/912896#M27906</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2024-01-24T20:26:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to find table name based on column in SAS DI or in SAS SMC</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/How-to-find-table-name-based-on-column-in-SAS-DI-or-in-SAS-SMC/m-p/913575#M27948</link>
      <description>Thanks, I tried this way already but I am looking at GUI.</description>
      <pubDate>Tue, 30 Jan 2024 12:53:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/How-to-find-table-name-based-on-column-in-SAS-DI-or-in-SAS-SMC/m-p/913575#M27948</guid>
      <dc:creator>sathya66</dc:creator>
      <dc:date>2024-01-30T12:53:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to find table name based on column in SAS DI or in SAS SMC</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/How-to-find-table-name-based-on-column-in-SAS-DI-or-in-SAS-SMC/m-p/913632#M27951</link>
      <description>&lt;P&gt;Querying the DICTIONARY.COLUMNS table will only help find what has been physically allocated to your SAS session via libname assigments.&lt;BR /&gt;&lt;BR /&gt;To query metadata, you can do this in SAS Managment Console through the following steps:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;login to SAS Management Console as an identity that will be able to read the metadata you are looking for.&lt;/LI&gt;
&lt;LI&gt;From the tabbed view in the left pane, select&amp;nbsp;&lt;STRONG&gt;Search&lt;/STRONG&gt;&lt;/LI&gt;
&lt;LI&gt;Specify the column name and the operator (in my case I chose&amp;nbsp;&lt;STRONG&gt;MAKE&lt;/STRONG&gt;, with the&amp;nbsp;&lt;STRONG&gt;Contains&lt;/STRONG&gt; operator; note that the name is case-insensitive)&lt;/LI&gt;
&lt;LI&gt;Clear all of the selected types, and then select&amp;nbsp;&lt;STRONG&gt;Column&lt;/STRONG&gt;&lt;/LI&gt;
&lt;LI&gt;Select the &lt;STRONG&gt;Search&lt;/STRONG&gt; button at the bottom of the pane&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="carl_sommer_0-1706635743262.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/93073i3A1AFCC04B6EC312/image-size/medium?v=v2&amp;amp;px=400" role="button" title="carl_sommer_0-1706635743262.png" alt="carl_sommer_0-1706635743262.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;In the results in right pane, select one of the matches&lt;/LI&gt;
&lt;LI&gt;Right mouse on this selected column and choose&amp;nbsp;&lt;STRONG&gt;Properties&lt;/STRONG&gt;&lt;/LI&gt;
&lt;LI&gt;Click on the&amp;nbsp;&lt;STRONG&gt;Authorization&lt;/STRONG&gt; tab&lt;/LI&gt;
&lt;LI&gt;Select the&amp;nbsp;&lt;STRONG&gt;Advanced&lt;/STRONG&gt; button&lt;/LI&gt;
&lt;LI&gt;This will display the (inverted) hierarchy of the column (i.e., the table and the folder hierarchy)&lt;BR /&gt;&lt;EM&gt;Note that the library is not displayed&lt;/EM&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="carl_sommer_1-1706635926484.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/93074i65076B254336836E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="carl_sommer_1-1706635926484.png" alt="carl_sommer_1-1706635926484.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Carl Sommer - SAS Technical Support&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2024 17:33:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/How-to-find-table-name-based-on-column-in-SAS-DI-or-in-SAS-SMC/m-p/913632#M27951</guid>
      <dc:creator>carl_sommer</dc:creator>
      <dc:date>2024-01-30T17:33:00Z</dc:date>
    </item>
  </channel>
</rss>

