Chapter Contents |
Previous |
Next |
The CATALOG Procedure |
Procedure features: |
|
Program |
options nodate pageno=1 linesize=80 pagesize=60 source; |
libname perm 'SAS-data-library'; |
proc catalog catalog=perm.finance; contents; title1 'Contents of PERM.FINANCE before changes are made'; run; |
change dept=deptcode (et=formatc); run; |
modify loan.frame (description='Loan analysis app. - ver1'); contents; title1 'Contents of PERM.FINANCE after changes are made'; run; quit; |
Output |
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.