I have little knowledge on SSAS cube processing through XMLA code and would need help here. I am processing the cube through below code.
<Object>
<DatabaseID>DB_test</DatabaseID>
<CubeID>Test</CubeID>
<MeasureGroupID>Order</MeasureGroupID>
<PartitionID>Order 1</PartitionID>
ProcessFull UseExisting
So I wanted to know if this code only process partition as the hierarchy that I am giving is Cube --> MeasureGroup --> partition.
If so, what should I need to do process full cube, do I need to add something like below to my query.
<object>
<DatabaseID>DB_test</DatabaseID>
<CubeID>Test</CubeID>
</Object>
<Type>ProcessFull</Type>