The following example
shows how to use PROC METALIB to add metadata for new tables, update
table definitions where necessary, and also delete table definitions
that are no longer valid. (You can also perform these functions using
SAS Data Integration Studio.)
proc metalib;
omr (library="lib1" repname="Foundation" );
update_rule=(delete);
report;
run;
The following example
shows how to use UPDATE_RULE with DELETE, NOADD, and NO UPDATE to
delete table definitions that are no longer valid, as well as suppress
the default add and update actions:
proc metalib;
omr (library="lib1" repname="Foundation" );
update_rule (delete noadd noupdate);
report;
run;
The resulting SAS output
resembles the following example:
Sample Summary Report