BookmarkSubscribeRSS Feed
Srigyan
Quartz | Level 8

I was using dictionary.tables & dictionary.columns table, but I am not aware what each column means from both the table.

Can some one explain each column, I know many are self explanatory, but I am not sure about all.Please help...

4 REPLIES 4
Kurt_Bremser
Super User

Look at the labels of the columns in the dirctionary tables:

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;

Please state which are still cryptic to you.

s_lassen
Meteorite | Level 14

I think the easiest way to get the information is this:

proc sql;
  describe table dictionary.tables;
  describe table dictionary.columns;
quit;

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.

ballardw
Super User

The online documentation that I have for SAS 9.4 has entries for dictionary tables for both basic language concepts and FedSQL.

Reeza
Super User

https://documentation.sas.com/?docsetId=sqlproc&docsetVersion=9.4&docsetTarget=n02s19q65mw08gn140bwf...

 

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.

 


@Srigyan wrote:

I was using dictionary.tables & dictionary.columns table, but I am not aware what each column means from both the table.

Can some one explain each column, I know many are self explanatory, but I am not sure about all.Please help...


 

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 1138 views
  • 3 likes
  • 5 in conversation