Skip Headers

Oracle® OLAP Reference
10g Release 1 (10.1)

Part Number B10334-02
Go to Documentation Home
Home
Go to Book List
Book List
Go to Table of Contents
Contents
Go to Index
Index
Go to Master Index
Master Index
Go to Feedback page
Feedback

Go to previous page
Previous
Go to next page
Next
View PDF

20 CWM2_OLAP_VERIFY_ACCESS

The CWM2_OLAP_VERIFY_ACCESS package provides a procedure for validating an OLAP cube and verifying its accessibility to the OLAP API.

This chapter discusses the following topics:

20.1 Validating the Accessibility of an OLAP Cube

Cube validation procedures in the CWM2_OLAP_VALIDATE package validate the logical structure of an OLAP cube and check that it is correctly mapped to columns in dimension tables and fact tables. However, a cube may be entirely valid according to this criteria and still be inaccessible to your application.

For this reason, you may need to use the CWM2_OLAP_VERIFY_ACCESS package to check that the following additional criteria have also been met:


Summary of CWM2_OLAP_VERIFY_ACCESS Subprograms

Table 20-1 CWM2_OLAP_VERIFY_ACCESS

Subprogram Description
VERIFY_CUBE_ACCESS Procedure
Validates the cube and verifies its accessibility to an OLAP application.


VERIFY_CUBE_ACCESS Procedure

This procedure first validates a cube by calling the VALIDATE_CUBE procedure in the CWM2_OLAP_VALIDATE package. Additionally it checks that an OLAP API application running under the identity of the calling user has access to the cube.

Cube accessibility requirements are described in "Validating the Accessibility of an OLAP Cube".

Syntax

VERIFY_CUBE_ACCESS (
          cube_owner            IN   VARCHAR2,
          cube_name             IN   VARCHAR2,
          type_of_validation    IN   VARCHAR2 DEFAULT 'DEFAULT',
          verbose_report        IN   VARCHAR2 DEFAULT 'YES');

Parameters

Table 20-2 VERIFY_CUBE_ACCESS Procedure Parameters

Parameter Description
cube_owner Owner of the cube.
cube_name Name of the cube.
type_of_validation 'DEFAULT' or 'OLAP API'. See "Validation Type".
verbose_report 'YES' or 'NO'. Whether to report all validation checks or only major events and errors. By default, all validation checks are reported.