- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 11-09-2012 01:52 PM
(636 views)
Hot to get the entire information of all libraries into a single table in SPDS using dictionary.acls..?
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
I'm not sure if this is what you are asking or not, see if this helps:
proc sql;
create table dictionary as
select *
from dictionary.columns
where libname = 'libname_here';