Features: |
PROC CATALOG statement CHANGE statement options: (ENTRYTYPE=) or (ET=) CONTENTS statement options: FILE=
|
libname perm 'C:\My Documents\proccatalogs';
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;
proc catalog catalog=perm.finance; contents; title1 'Contents of PERM.FINANCE before changes are made'; run;