Assign a library reference. The LIBNAME statement assigns a libref to the SAS
library that contains a permanent SAS catalog.
libname perm 'SAS-library';
List the entries in a catalog and route the output to a file. The CONTENTS statement
creates a listing of the contents of the SAS catalog Perm.Finance and routes the output to
a file.
proc catalog catalog=perm.finance;
contents;
title1 'Contents of PERM.FINANCE before changes are made';
run;
Change entry names. The CHANGE statement changes the name of an entry that
contains a user-written character format. (ET=) specifies the entry type.
change dept=deptcode (et=formatc);
run;
Process entries in multiple ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month, and much more.