I have deployed the out of box AX Cubes, however, one of the dimensions will not process. It appears to be a slow running view (INVENTTABLEEXPANDED) that is used on the Released Products dimension. Looks like the dimension rebuild is filtering on the partition column which causes the query to just run indefinitely.
ie. This runs fast: select * from inventtableexpanded
however this times out after an hour:
select * from inventtableexpanded
WHERE PARTITION = 5637155555
There are about 600,000 records in the underlying table (inventtable), and I can not index the view as it is not a schema bound view.
This is all out of box configuration, any thoughts on why the default views are so slow to run that they just timeout?