BookmarkSubscribeRSS Feed
darrylovia
Quartz | Level 8
I've been looking into SAS catalogs lately and was wondering if any one knows what the column "alias" means in the DICTIONARY.CATALOGS table/view. All the values are missing.

Thanks


2 + DESCRIBE TABLE DICTIONARY.CATALOGS;
NOTE: SQL table DICTIONARY.CATALOGS was created like:

create table DICTIONARY.CATALOGS
(
libname char(8) label='Library Name',
memname char(32) label='Member Name',
memtype char(8) label='Member Type',
objname char(32) label='Object Name',
objtype char(8) label='Object Type',
objdesc char(256) label='Object Description',
created num format=DATETIME informat=DATETIME label='Date Created',
modified num format=DATETIME informat=DATETIME label='Date Modified',
alias char(32) label='Object Alias',
level num label='Library Concatenation Level'
);
1 REPLY 1
deleted_user
Not applicable
Hi,

Submit code:

data totals;
length dept $ 7 site $ 8;
input dept site quarter sales;
datalines;
Parts Sydney 1 7043.97
Parts Atlanta 1 8225.26
Parts Paris 1 5543.97
Tools Sydney 4 1775.74
Tools Atlanta 4 3424.19
Tools Paris 4 6914.25
;

RUN;


title 'Total Sales';
footnote j=r 'GCHBKSUM ';

proc gchart data=totals gout=sasuser.tmp;
format sales dollar8.;
block site / sumvar=sales name = "XYZ";
run;
quit;

GRSEG catalog entry has alias and it looks like unique ID for entry.

M.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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
  • 1 reply
  • 989 views
  • 0 likes
  • 2 in conversation