1 olap.schema.getCube
<olap.schema.getCube name='name'>
<value /> !
</olap.schema.getCube>
Attributes | |||||
---|---|---|---|---|---|
Name | Type | Required | Default | Description | |
Aname | String | Name of the cube which you want to obtain. |
Arguments | |||||
---|---|---|---|---|---|
Name | Type | Required | Unique | Nullable | Description |
Evalue | schema | The schema OLAP. |
Returns | |
---|---|
Type | Description |
array | Returns the Cube of the schema passed as argument. |
Example
Copy
<xsql-script name='olap_schema_getCube'> <body> <iterator name='m_cube'> <in> <olap.schema.getCube name='Sales'> <olap.schema name='s_foodmart' /> </olap.schema.getCube> </in> <do> <println><m_cube /></println> </do> </iterator> </body> </xsql-script>