So I executed this series of sql:
set 'MDX_CATALOG_NAME' = 'testing';
MDX SELECT
{
[MEASURES].STO_OPEN_QUANTITY
} on COLUMNS,
{
[WERKS].MEMBERS
} on ROWS
from [CA_PFEP_STO_ALL];
MDX GET_AXISDATA 1 546DD7D434738C9CE1000000C6070FEB;
MDX GET_CELLDATA 546DD7D434738C9CE1000000C6070FEB;
MDX GET_AXISDATA 1 546DD7D434738C9CE1000000C6070FEB;
and they all produce data, but what I'm not getting is why this is? I see in the backend that the threads being generated to produce the pieces.
Is it like this so the 3rd party app can piece it together? It looks to me that HANA is breaking down the MDX into pieces and executing it.
So I'm not getting the reason for setting the MDX_CATALOG_NAME and the GUID's.
Can anyone explain?
I'd like to just produce a resultset from the MDX Select.
Mike