In this example, you
use the REPORT statement to determine whether there are any inconsistencies
between a metadata-bound library and its corresponding metadata objects.
libname secdemo 'path';
proc authlib library=secdemo;
report;
run;
Note: The preceding code does
not explicitly supply connection information for the metadata server.
This example assumes that your SAS session already knows how to connect
to the target metadata server.
In this example, no
inconsistencies exist. The following image depicts output from the
preceding code.