Oracle® OLAP DML Reference 11g Release 1 (11.1) Part Number B28126-01 |
|
|
View PDF |
The ADVISE_PARTITIONING_LEVEL
function returns the level used by the Sparsity Advisor for partitioning over a dimension. It returns NULL
if the Sparsity Advisor did not partition the cube, and raises an exception if the dimension hierarchy is not level-based.
Note:
You cannot execute this function from within the OLAP Worksheet. You must execute if in a SQL tool such as SQL*Plus.See also:
"Using the Sparsity Advisor"Syntax
ADVISE_PARTITIONING_LEVEL ( cubename IN VARCHAR2, sources IN dbms_aw$_dimension_sources_t, advtable IN VARCHAR2 DEFAULT NULL) RETURN VARCHAR2;
Parameters
Table B-7 ADVISE_PARTITIONING_LEVEL Function Parameters
Parameter | Description |
---|---|
|
The same cubename value provided in the call to |
|
The name of an object (such as a PL/SQL variable) defined with a data type of |
|
The name of a table created by the |
Example
The following program fragment shows the ADVISE_PARTITIONING_LEVEL
function being used to query the results after using the Sparsity Advisor.
DECLARE dimsources dbms_aw$_dimension_sources_t; BEGIN -- Calls to ADD_DIMENSION_SOURCE and ADVISE_SPARSITY omitted here . . . dbms_output.put_line('Partitioning Level: ' || dbms_aw.advise_partitioning_level('units_cube', dimsources, 'aw_sparsity_advice')); END; /
The program uses DBMS_OUTPUT
to display the partitioning level, which in this case is YEAR
.
Partitioning Level: year