Procedure features: |
IMPACT_LIMIT
statement |
REPORT(TYPE=DETAIL) statement |
NOEXEC statement |
|
To generate an impact analysis, specify
IMPACT_LIMIT and REPORT(TYPE=DETAIL).
Use the NOEXEC statement if you want to examine the changes before you commit
to making the changes. The generated impact analysis shows how the data source
differs from metadata, and how making those changes will affect the Job and
Transformation objects.
|
ods listing close;
ods html body="C:\test\update.html";
proc metalib;
omr (library="mydifiles");
update_rule(delete);
report (type=detail);
impact_limit=0;
noexec;
run;
ods html close;
ods listing; |
Copyright © 2010 by SAS Institute Inc., Cary, NC, USA. All rights reserved.