Chapter Contents

Previous

Next
The CATALOG Procedure

Example 2: Displaying Contents, Changing Names, and Changing a Description


Procedure features:
PROC CATALOG statement
CHANGE statement options:
(ENTRYTYPE=) or (ET=)
CONTENTS statement options:
FILE=
MODIFY statement
RUN statement
QUIT statement

This example



Program
 Note about code
options nodate pageno=1 linesize=80 pagesize=60 source;

 Note about code
libname perm 'SAS-data-library';

 Note about code
proc catalog catalog=perm.finance;
   contents;
title1 'Contents of PERM.FINANCE before changes are made';
run;
 Note about code
   change dept=deptcode (et=formatc);
run;

 Note about code
   modify loan.frame (description='Loan analysis app. - ver1');
   contents;
title1 'Contents of PERM.FINANCE after changes are made';
run;
quit;


Output
[HTML Output]  [Listing Output]


Chapter Contents

Previous

Next

Top of Page

Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.