<?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: Tables &amp;amp; Columns SAS in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Tables-amp-Columns-SAS/m-p/521179#M141392</link>
    <description>&lt;P&gt;&lt;A href="https://documentation.sas.com/?docsetId=sqlproc&amp;amp;docsetVersion=9.4&amp;amp;docsetTarget=n02s19q65mw08gn140bwfdh7spx7.htm&amp;amp;locale=en" target="_blank"&gt;https://documentation.sas.com/?docsetId=sqlproc&amp;amp;docsetVersion=9.4&amp;amp;docsetTarget=n02s19q65mw08gn140bwfdh7spx7.htm&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There's a lot of columns, explaining each one would take way too much time. Is there a specific question you have that the label does not answer.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/200312"&gt;@Srigyan&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I was using&amp;nbsp;dictionary.tables &amp;amp;&amp;nbsp;dictionary.columns table, but I am not aware what each column means from both the table.&lt;/P&gt;
&lt;P&gt;Can some one explain each column, I know many are self explanatory, but I am not sure about all.Please help...&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 13 Dec 2018 16:18:38 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2018-12-13T16:18:38Z</dc:date>
    <item>
      <title>Tables &amp; Columns SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Tables-amp-Columns-SAS/m-p/521107#M141368</link>
      <description>&lt;P&gt;I was using&amp;nbsp;dictionary.tables &amp;amp;&amp;nbsp;dictionary.columns table, but I am not aware what each column means from both the table.&lt;/P&gt;&lt;P&gt;Can some one explain each column, I know many are self explanatory, but I am not sure about all.Please help...&lt;/P&gt;</description>
      <pubDate>Thu, 13 Dec 2018 11:23:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Tables-amp-Columns-SAS/m-p/521107#M141368</guid>
      <dc:creator>Srigyan</dc:creator>
      <dc:date>2018-12-13T11:23:07Z</dc:date>
    </item>
    <item>
      <title>Re: Tables &amp; Columns SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Tables-amp-Columns-SAS/m-p/521109#M141370</link>
      <description>&lt;P&gt;Look at the labels of the columns in the dirctionary tables:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
title 'Dictionary.Tables';
select name, label from dictionary.columns
where libname = 'SASHELP' and memname = 'VTABLE';
title 'Dictionary.Columns';
select name, label from dictionary.columns
where libname = 'SASHELP' and memname = 'VCOLUMN';
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Please state which are still cryptic to you.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Dec 2018 11:30:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Tables-amp-Columns-SAS/m-p/521109#M141370</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-12-13T11:30:29Z</dc:date>
    </item>
    <item>
      <title>Re: Tables &amp; Columns SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Tables-amp-Columns-SAS/m-p/521116#M141375</link>
      <description>&lt;P&gt;I think the easiest way to get the information is this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
  describe table dictionary.tables;
  describe table dictionary.columns;
quit;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;But I understand your frustration, there does not seem to be any other documentation of this on support.sas.com, only for FEDSQL, and I am not sure if that's the same.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Dec 2018 12:21:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Tables-amp-Columns-SAS/m-p/521116#M141375</guid>
      <dc:creator>s_lassen</dc:creator>
      <dc:date>2018-12-13T12:21:29Z</dc:date>
    </item>
    <item>
      <title>Re: Tables &amp; Columns SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Tables-amp-Columns-SAS/m-p/521151#M141389</link>
      <description>&lt;P&gt;The online documentation that&amp;nbsp;I have for SAS 9.4 has entries for dictionary tables for both basic language concepts and FedSQL.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Dec 2018 15:14:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Tables-amp-Columns-SAS/m-p/521151#M141389</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-12-13T15:14:23Z</dc:date>
    </item>
    <item>
      <title>Re: Tables &amp; Columns SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Tables-amp-Columns-SAS/m-p/521179#M141392</link>
      <description>&lt;P&gt;&lt;A href="https://documentation.sas.com/?docsetId=sqlproc&amp;amp;docsetVersion=9.4&amp;amp;docsetTarget=n02s19q65mw08gn140bwfdh7spx7.htm&amp;amp;locale=en" target="_blank"&gt;https://documentation.sas.com/?docsetId=sqlproc&amp;amp;docsetVersion=9.4&amp;amp;docsetTarget=n02s19q65mw08gn140bwfdh7spx7.htm&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There's a lot of columns, explaining each one would take way too much time. Is there a specific question you have that the label does not answer.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/200312"&gt;@Srigyan&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I was using&amp;nbsp;dictionary.tables &amp;amp;&amp;nbsp;dictionary.columns table, but I am not aware what each column means from both the table.&lt;/P&gt;
&lt;P&gt;Can some one explain each column, I know many are self explanatory, but I am not sure about all.Please help...&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Dec 2018 16:18:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Tables-amp-Columns-SAS/m-p/521179#M141392</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-12-13T16:18:38Z</dc:date>
    </item>
  </channel>
</rss>

