Previous Page | Next Page

METALIB Procedure

Example 2: Selecting Tables for Processing


Procedure features:

SELECT statement



Program

This example adds or updates metadata for a specific table.

 Note about code
proc metalib;
   omr (liburi="SASLibrary?@name='test'");
   select (mytable);
   report;
run;

Program

This example uses the SELECT statement, but specifies the table definition's metadata identifier instead of its name. This syntax is preferred, because metadata identifiers are unique.

 Note about code
proc metalib;
   omr (liburi="SASLibrary?@name='test'");
  select (A7892350.B00265DX);
  report;
run;

Previous Page | Next Page | Top of Page