Publishing Framework
RETRIEVE_MDDBRetrieves an MDDB entry from a package. SyntaxCALL RETRIEVE_MDDB(entryId, libname, memname, rc);
DetailsAn MDDB is a multidimensional database (not a data set) offered by SAS. An MDDB is a specialized storage facility that can be created by tools such as multidimensional data viewers, which populate the MDDB with data retrieved from sources such as a data warehouse. The matrix format of MDDBs allows the viewer to access data quickly and easily.
If the The following example retrieves an MDDB entry WORK.OUTDATA from the package. lib = 'work'; mem = 'outdata'; CALL RETRIEVE_MDDB(entryId, lib, mem, rc);
|