Viewing Permissions for Metaoutlines

OLAP Metadata Catalog stores information about the permissions set for OLAP models and metaoutlines. View this information by selecting the appropriate columns from tables in OLAP Metadata Catalog.

The MO_INFO table in OLAP Metadata Catalog contains information about metaoutlines, including the following columns which are relevant to permissions:

  To determine the access permissions for all metaoutlines in OLAP Metadata Catalog:

  1. Issue the following SELECT statement in the OLAP Metadata Catalog database, using the tools for the data source.

    SELECT MO_NAME,MO_OWNER,MO_ACCESS_CODE
           FROM MO_INFO
  2. View the results.

    In the following example, TBC Metaoutline gives read and write permissions to other users (MO_ACCESS_CODE = 2). TBC_Archive gives read permissions to other users (MO_ACCESS_CODE = 1). TBC_Mine gives neither read nor write permissions to other users (MO_ACCESS_CODE = 0).

    MO_NAME              MO_OWNER    MO_ACCESS_CODE
    -------              --------    --------------
    TBC Metaoutline      sa          2
    TBC_Archive          sa          1
    TBC_Mine             sa          0
    (3 row(s) affected)