1 olap.query.execute
<olap.query.execute
iwa-accelerate='iwa-accelerate'
iwa-fallback='iwa-fallback'
clear-groups='clear-groups'
remove-empty='remove-empty'
remove-zeros='remove-zeros'
>
<query /> !
</olap.query.execute>
Attributes | |||||
---|---|---|---|---|---|
Name | Type | Required | Default | Description | |
Aiwa-accelerate | String | Execute with IWA acceleration commands. | |||
Aiwa-fallback | String | Force accelerated execution in IWA. | |||
Aclear-groups | Boolean | Clean the groups. | |||
Aremove-empty | Boolean | Remove the empties. | |||
Aremove-zeros | Boolean | Remove the zeros. |
Arguments | |||||
---|---|---|---|---|---|
Name | Type | Required | Unique | Nullable | Description |
Equery | query | Query to execute. |
Returns | |
---|---|
Type | Description |
VTable | Returns the result of the cube execution. |
Example
Copy
<xsql-script name="olap_xsql_script_query_execute"> <body> <return> <olap.query.execute iwa-accelerate="on" iwa-fallback="on" clear-groups="true" remove-empty="true" remove-zeros="false" > <olap.query rows="[Region].[Region], [Department].[Department]" cols="[Measures].[Budget]" > <olap.schema.getCube name="Quadrant Analysis"> <olap.schema name="p_sd" /> </olap.schema.getCube> </olap.query> </olap.query.execute> </return> </body> </xsql-script>