Viewing Permissions for OLAP Models

Information about the permissions that are set for OLAP models and metaoutlines is stored in OLAP Metadata Catalog. View this information by selecting the appropriate columns from tables in OLAP Metadata Catalog.

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

  To view access permissions for all OLAP models in OLAP Metadata Catalog:

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

    SELECT MODEL_NAME,MODEL_OWNER,MODEL_ACCESS_CODE
           FROM OM_INFO
  2. View the results.

    In the following example, TBC Model gives read and write permissions to other users (MODEL_ACCESS_CODE = 2). TBC_Mod_Archive gives read permissions to other users (MODEL_ACCESS_CODE = 1). TBC_Mod_Mine gives neither read nor write permissions to other users (MODEL_ACCESS_CODE = 0).

    MODEL_NAME           MODEL_OWNER   MODEL_ACCESS_CODE
    ----------           -----------   -----------------
    TBC Model            sa            2
    TBC_Mod_Archive      sa            1
    TBC_Mod_Mine         sa            0
    (3 row(s) affected)