I'm trying to export a fairly large data from a BSO cube using MDX scripting to be imported in another BSO cube. I have tried calc script and report script but it takes a lot of time. My cube has only 4 dimensions-Accounts(dense),Years(sparse),Scenario(sparse) and Countries(Sparse).
The MDX script I'm using is below:
SELECT {[Years].[Jan],[Scenario].[Actual]} ON COLUMNS,
NonEmptysubset (Crossjoin({[Accounts].Levels(0).members},
({[Countries].Levels(0).members}))
ON ROWS From [Test.XXX];
Again this script is taking a lot of time, which it shouldn't. Can someone please tell me what is mistake I'm making in above? I want the data to be exported in less than a minute. Thanks!