Tagged Questions
Multidimensional Expressions (MDX) is a query language for OLAP databases. It was developed by Microsoft but has later gained widespread support from other OLAP vendors.
21
votes
1answer
1k views
Designing dimension hierarchies: Natural or Unnatural
I'm using Analysis Services and when designing dimensions I'm never sure how far to go to build natural hierarchies.
What I mean is I've added in all the genuine attribute relationships. So most ...
11
votes
4answers
2k views
The best MDX references on the net
What is the best references/links,cheatsheets for the MDX language? Here are a few starters that I have collected. Please share yours :)
http://www.gumper.com/mdx.html
...
11
votes
8answers
5k views
How to learn MDX
I am currently learning OLAP & MDX after many years of relational database development.
Any tips on getting started in MDX? What are the best books and resources to learn MDX?
6
votes
5answers
976 views
Different approaches to accessing SSAS
I’m interested in knowing some different approaches for retrieving data from Analysis Services, to use in either objects in code, or for end-user reporting.
I’ve used two different approaches in the ...
6
votes
3answers
3k views
Any Python OLAP/MDX ORM engines?
I'm new to the MDX/OLAP and I'm wondering if there is any ORM similar like Django ORM for Python that would support OLAP.
I'm a Python/Django developer and if there would be something that would have ...
5
votes
1answer
337 views
Reading SQL Analysis Services Metadata
I have a number of objects in my SSAS cube, many of which were created to be invisible. For example:
CREATE MEMBER CURRENTCUBE.[Measures].[Latency Backcolor]
AS CASE
WHEN [Average Latency] > ...
4
votes
3answers
1k views
Query OLAP Mondrian (MDX, XMLA) with a Python interface?
Actually I'm using R + Python with RPY2 to manipulate data and ggplot to create beautiful graphics.. I have some data in a PostgreSQL database, and I'm using psycopg2 to query data.
I'm starting a ...
4
votes
2answers
360 views
Which pentaho mondrian library to include in a Java application to have mapping MDX to SQL
I want to implement an application that provides support for MDX queries. For this purpose I would like to use one of libraries from pentaho mondrian (an open source OLTP server with the MDX ...
4
votes
4answers
1k views
MDX performance vs. T-SQL
I have a database containing tables with more than 600 million records and a set of stored procedures that make complex search operations on the database.
The performance of the stored procedures is ...
4
votes
1answer
5k views
How to exclude a certain member from a MDX call that gets all descendants of a member at a higher level
In an OLAP database I work with there is a 'Location' hierarchy consisting of the levels Company -> Region -> Area -> Site -> Room. I am using the following MDX to get all the descendants of a ...
3
votes
3answers
249 views
Why does Order ignore subselect?
I've run into some confusing behavior in Analysis Services 2005 (and 2008 R2) and would appreciate it if someone could explain why this is happening. For the sake of this question, I've reproduced the ...
3
votes
2answers
193 views
MDX support for Hive (Hadoop)
Is there any support for Multidimensional Expressions (MDX) for Hadoop's Hive ?
3
votes
1answer
405 views
non-Windows OLAP desktop client?
Working with SSAS 2008 in an environment with mostly Mac desktops. Use DbVisualizer and Aqua Data Studio for writing relational queries, but need a native desktop app to write MDX queries and view ...
3
votes
2answers
658 views
sample MDX queries
Can you provide me tutorial for writing MDX and sample MDX queries especially, since I have not been used to MDX ?
3
votes
0answers
746 views
MDX Calculated Member CrossJoin question
I have an MDX query with the following calculated member:
with member [Measures].[BBOX] as
Count(
Filter(
CrossJoin([Dim Response].[Response ID].Children, [Dim Question].[Question ...
3
votes
1answer
543 views
MDX Error: Query Optimizer generated too many subcubes in the query plan
I'm trying to ask to a cube on SQL Server 2008 with a huge mdx query.
This query contains more than 20 calculated members (defined on the query).
Each member contains a restriction for a dimension ...
2
votes
2answers
44 views
MDX using except doesn't work
I have the following Problem:
Select
{
[Measures].[PerformanceTotalYtd]
} on columns,
Non Empty{
...
2
votes
1answer
46 views
Non-Additive Fact
I have a Fact Table with 10 measures. out of 10 measures 9 are aggregated at Sum level.But I have Unit Price which is a Non-Additive Fact Measure.When I go to the property of Aggregation and make it ...
2
votes
1answer
77 views
Accessing TFS cube to obtain area hierarchy's unique name
I would like to obtain the unique name of a given area path.
I've seen this article of John Socha: http://blogs.socha.com/2009/10/customizing-report-parameters-for-team.html. What I would like to do ...
2
votes
1answer
149 views
MDX Not equal basic question
I'm a BI starter with SSAS and SSRS and I have a very basic question of MDX.
It is very easy to get all values that match a condition in a calculated member. For example
WITH MEMBER ...
2
votes
1answer
95 views
Is BI/OLAP the right solution?
I'm building an application with an underlying database that looks like a text-book example of OLAP: I have large amount of data that comes in every night, which then gets rolled up by time and other ...
2
votes
1answer
286 views
How to Unproject in SlimDX
I am new to game programming as well as new to DirectX & SlimDX. Currenty I am converting a MDX code to SlimDX code and I got stuck into an issue which I am unable to find out in the SlimDX ...
2
votes
1answer
354 views
SS 2008 R2 Analysis Services - Class not registered
I have a fresh 64 bit SS 2008 R2 install on a new server running 64 bit Windows 7. (No previous versions of SS). BIDS is running on the same box as SS 2008 R2.
I ran the Analysis Services tutorial, ...
2
votes
0answers
151 views
MDX - Creation of custom sets
I would like to create customizable orders over a set of members using mdx and mondrian. For example I have a hierarchy containing all the country in the world. I would like to permit the user to ...
2
votes
3answers
474 views
User defined hierarchy in an MDX query
Following on from this question regarding calculating a member I have 2 calculated members defined as:
MEMBER [Asset].[Class].[Fixed Income Derivatives]
AS
AGGREGATE(
{
...
2
votes
1answer
265 views
Parser: The end of the input was reached
I'm very new to MDX and don't know what this error "Parser: The end of the input was reached" means.
I ran my code in mdx and it is pulling correct data. However, when I take my code and put it ...
2
votes
2answers
641 views
Create an MDX calculated member to make a stacked bar chart using data with total and reductions
We use a cube built in SSAS and we would like to show the effect of deltas against a forecast.
So, we have data like this:
Year Type Amount
---- --------- ---------
2008 Forecast ...
2
votes
1answer
557 views
MDX: use dimension values on columns
I wanted to use dimension properties on columns. So, in the mdx query, I dragged in those properties from the dimension "member properties". But, for some reason, the values for those properties are ...
2
votes
2answers
246 views
Subselecting with MDX
Greetings stack overflow community.
I've recently started building an OLAP cube in SSAS2008 and have gotten stuck. I would be grateful if someone could at least point me towards the right ...
2
votes
3answers
280 views
Preserving Language across inline Calculated Members in SSAS
Problem: I need to retrieve the language of a given cell from the cube. The cell is defined by code-generated MDX, which can have an arbitrary level of indirection as far as calculated members and ...
2
votes
1answer
1k views
MDX Filtering at fact level
im pretty newbie at mdx sintaxys.
I have the next requirement that i need to be able to solve it using mdx, if its possible. I need to show the number of SALE transactions which amout value is ...
2
votes
1answer
178 views
Recurring calculations in SQL 2008 MDX query
I have an MDX query which returns the following tuples:
Dim1A, Dim11, Dim21, Measure1A, Measure11, Measure21
Dim1A, Dim12, Dim22, Measure1A, Measure12, Measure22
Dim1A, Dim13, Dim23, Measure1A, ...
2
votes
1answer
638 views
SQL 2008 - MDX Leaf Level Calculation with Parent Aggregates
What is the optimal way to create a calculated measure to compute a custom variance formula (I cannot use the default Variance function because it does not accommodate custom weights). So the leaf ...
2
votes
2answers
117 views
The correct place to put a markdown extension file in a django project?
I've created a markdown extension file (called mdx_xxx.py) for a django project I'm working on but I can't really decide where to put it.
The documentation says that the file should reside on the ...
2
votes
1answer
721 views
MDX: How to turn tuples with multiple members into tuples with a single member?
I have this MDX query (based on the Foodmart sample database):
SELECT
{[Measures].[Profit]} ON COLUMNS,
{CROSSJOIN([Product].[All Products].Children, [Time].[1997].Children)} ON ROWS
FROM [Sales]
...
2
votes
2answers
3k views
MDX WHERE NOT IN() equivalent in many-to-many dimension
I have a many-to-many dimension in my cube (next to other regular dimensions). When I want to exclude fact rows in my row count measure, I usually do something like the following in MDX
SELECT ...
2
votes
1answer
3k views
MDX query containing 2 dimensions from the same Hierarchy
The relevant structures from my cube are that I have a Hierarchy with "Class" and "SubClass". I also have a Measure called "Value" which is what im trying to obtain.
A simple query may look like:
...
2
votes
2answers
441 views
Mdx String generator
For Sql Server Analysis Services.
What im looking for is if anyone has example code of a class or function or a precompiled dll that you can pass columns, rows, pages, with filters etc. This then ...
2
votes
1answer
1k views
MDX ability to calculate ratio of sums from child levels
I'm very much a novice at MDX, and have no idea how to approach this problem. I'd appreciate any help, even if just pointers to where relevant functions are explained.
I need to be able to calculate ...
2
votes
2answers
535 views
Cube Calculated Member Question
I'm rather new to SSAS and am completely stumped on how to solve this problem. I have a dimension called Thresholds. Within the Thresholds dimension there are the following Members:
[Threshold ...
2
votes
2answers
2k views
Performance Implications of Calculated Members in SSAS
I'm wondering if there are any performance implications from adding a lot of calculated members to my cube. On one hand, it's nice to have things defined once, located centrally, tested, and ...
2
votes
3answers
112 views
how to find out which columns to join
Is there an easy way to find out the column dependencies between tables in the DSV of a cube?
The reason I am asking this question is: When there are lots of tables (fact and dim tables) in the dsv, ...
2
votes
2answers
2k views
MDX Calculating Time Between Events
I have a Cube which draws its data from 4 fact/dim tables.
FactCaseEvents (EventID,CaseID,TimeID)
DimEvents (EventID, EventName)
DimCases (CaseID,StateID,ClientID)
DimTime (TimeID,FullDate)
...
2
votes
3answers
922 views
Best Way to Access MS Analysis Services Cube from Java
I want to issue MDX against a MSAS cube from a Java client. What connectivity approaches have proven to be reliable for this?
2
votes
1answer
3k views
Draw Text Over Video in Managed DirectX with C#
How can I draw text Over Video in Managed DirectX with C#?
2
votes
2answers
347 views
How to assess performance of MDX in OLAP processing
I am familiar with standard practices to assess performance query or stored procedure using SQL server 2000/2005/2008. How is the best way to assess MDX performance? I assume its possible to write ...
2
votes
1answer
1k views
MDX filter problem
I'm pretty new to the whole MDX thing, but the following is just driving me batty. A FILTER statement I'm using is acting... strangely. Code sample, followed by description:
SELECT
{
...
1
vote
1answer
32 views
SSAS -> MDX -> How to create a query that returns a topcount by a date period i.e. week?
I have received a recent request to create a query that returns the top 100 customers by revenue per week. I can obviously and easily return the top 100 customers as a whole but when I add in the ...
1
vote
1answer
18 views
MDX query creating verbose xml style field names in dataset in SSRS
I just pasted a query (which works in SSMS) into a new dataset in VS.net/BIDS
However, the field/column names returned are all showing values like:
...
1
vote
1answer
38 views
SSAS -> MDX -> Creating a column percentage within my query based on counts
SELECT NON EMPTY {[Measures].[Fact Order Count]} ON COLUMNS,
{ ([Front Manager].[Front Manager Id].[Front Manager Id].ALLMEMBERS * [Order Type].[Order Type].[Order Type].ALLMEMBERS ) } ON ROWS
FROM ...