Date: Mon, 29 Nov 2004 16:12:01 -0000
Reply-To: Philip Mason <phil@WOODSTREET.ORG.UK>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Philip Mason <phil@WOODSTREET.ORG.UK>
Subject: Metadata in SAS 9
Content-Type: text/plain; charset="us-ascii"
Has anyone used Proc Metadata to do anything useful in SAS 9? Or used the
metadata libname engine in SAS 9? One thing I am trying to do at present is
to read my metadata repository to get a list of the stored processes
defined. I can't find any documentation, papers or anything in the SAS-L
archive.
To get you started... here is a Proc Metadata example, which produces
something (at least)...
PROC METADATA
REPOS="Foundation"
IN="<GetMetadataObjects>
<Reposid>$METAREPOSITORY</Reposid>
<Type>PhysicalTable</Type>
<Objects/>
<Ns>SAS</Ns>
<Flags/>
<Options/>
</GetMetadataObjects>"
VERBOSE;
RUN;
|