Previous Page | Next Page

METALIB Procedure

Example 3: Generating an Impact Analysis


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.


Program

 Note about code
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;

SAS Output: HTML

[untitled graphic]

Previous Page | Next Page | Top of Page