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...


 

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 1056 views
  • 3 likes
  • 5 in conversation