Discussions
Categories
- 17.9K All Categories
- 3.4K Industry Applications
- 3.3K Intelligent Advisor
- 63 Insurance
- 535.7K On-Premises Infrastructure
- 138.1K Analytics Software
- 38.6K Application Development Software
- 5.6K Cloud Platform
- 109.3K Database Software
- 17.5K Enterprise Manager
- 8.8K Hardware
- 71K Infrastructure Software
- 105.2K Integration
- 41.5K Security Software
Customising MDX

Andreas187
Member Posts: 2 Blue Ribbon
Is it possible to customise the MDX when extracting data from one Essbase cube for import into another.
So instead of this which exports all dimensions into a text file (I have paraphrased the code!):
SELECT Dim1 ON COLUMNS,
{Dim2.Lev0, Dim2.Lev0, Dim3.Lev0, Dim4.Actual, Dim5.Product1, Dim6.Entity1}
ON ROWS FROM database
I would like to exclude dimensions that aren't necessary in the destination cube
SELECT Dim1 ON COLUMNS,
NON EMPTY {Dim2.Lev0, Dim2.Lev0, Dim3.Lev0}
ON ROWS FROM database
WHERE (Dim4.Actual, Dim5.Product1, Dim6.Entity1)