Publish Package Interface |
Inserts a SAS multidimensional database into a package.
CALL INSERT_MDDB(packageId, libname, memname, desc, nameValue, rc);
Name/value pairs are site-specific; they are used for the purpose of filtering.
An MDDB is a multidimensional database (not a data set) offered by SAS. It is a specialized storage facility where data may be pulled from a data warehouse or other data sources and stored in a matrix-like format for fast and easy access by tools such as multidimensional data viewers.
The following example inserts the MDDB FINANCE.PAYROLL into the package
returned in packageId
.
libname = 'finance'; memname = 'payroll'; desc = 'Monthly payroll data.'; nameValue=''; CALL INSERT_MDDB(packageId, libname, memname, desc, nameValue, rc);
Publish Package Interface |