The mondrian tag has no wiki summary.
4
votes
2answers
386 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 ...
3
votes
1answer
716 views
Presentation of data from Mondrian OLAP engine + Olap4j
I'm doing a little bit of planning of an application that uses Mondrian OLAP engine with Olap4j and should present/display data to user. I understand all the back-end stuff, but I'm not sure how ...
2
votes
0answers
69 views
Mondrian Can't find Schema in VFS when used in a Webapp
I have a webapp that I'm trying to use Mondrian within. And I'm getting the following exception when I try to open a connection:
Caused by: mondrian.olap.MondrianException: Mondrian Error:Internal ...
2
votes
2answers
129 views
Why use ROLAP instead of plain MySQL?
Are there any performance advantages in using a ROLAP server such as Mondrian on top of a MySQL database, as opposed to simply querying the MySQL database?
I am asking this in the context in which ...
2
votes
1answer
137 views
Mondrian Olap drilldown algorithm
I didn't found but may be someone could me explain - OLAP cube is a combination of all possible aggregation, so related to Mondrian - leaf level is data in fact table or it is a minimum aggregate ...
2
votes
0answers
157 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
1answer
572 views
Pentaho: Best way to convert a date into a drill-down-able cube dimension?
My datawarehouse table just contains a single date SQL column, but I want to be able to drill down using the usual year/quarter/month/day levels.
I could manually create new column using Pentaho ...
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 ...
1
vote
3answers
168 views
Are Mondrian / OLAP the wrong tool for joining large dimensions/sets?
Summary: Most of the examples I've seen of MDX joins have involved joining relatively small sets, say with tens or hundreds of items each. But I find myself also wanting to try joining (in particular ...
1
vote
2answers
102 views
MDX equivalent of SQL Query
What will be MDX query equivalent to:
select * from tableName where somecount > num1 and somecount < num2?
somecount is a dimension in my case (not a dimension).
As far as I have understood, ...
1
vote
2answers
207 views
Jaspersoft: 4.2.1 upgrade creates issues with olap access grant schemas
We are in the process of developing all our domains, olap schemas, reports, etc....in preparation for a Q1 launch of jasper replacing an older BI suite. We had been working in 4.1 and had a working ...
1
vote
1answer
147 views
How to get first level data members after apply filter in third level (Mondrian MDX)
I am having a dimension named PERIOD with three levels YEAR, QUARTER and MONTH.
I have filtered out third level data as follows:
With SET [*BASE_MEMBERS_Period.Period] AS ' Filter ( ...
1
vote
2answers
198 views
MDX query to compare different years
I am new to MDX and wondered if it is possible to create a query that shows a Sales amount per Year and per Month on two different axes, even if the sales date is a single dimension.
Something like:
...
1
vote
1answer
58 views
Good MDX default query
I have build an MDX editor and now need a good default query which executes and already has two dimensions. I would like to place the measures on the first dimension (without knowing their names), and ...
1
vote
0answers
81 views
mondrian filters does not remember their options when moving to a dimension
I have found a bug that I would like to solve.
I have a mondrian cube that has some dimensions on columns, others on rows, and also some filters.
In the filters I have a calculated exception like ...
1
vote
1answer
712 views
Pentaho Mondian : Mondrian Schema xml Vs Pentaho metadata domain xmi Vs CDA cda files
I have been exploring the Pentaho ecosystem. Please forgive any naive things in the question.
There are a couple of things about these config files ( containing domains names and its mappings etc ) ...
1
vote
2answers
532 views
MDX Query for Parent Child Relation ship
I have an OLAP Basically there is a dimension that has parent-child relation ship.
So the dimension has a parent-id and a child-id.
There is a fact table that exists that has the child-id. I would ...
1
vote
1answer
362 views
MDX - Concatenate level's properties and level's members
I an using mondrian and I have this issue: using a query mdx I need to concatenate in each member name belonging to a certain level, its name and a the value of a certain level properties for that ...
1
vote
1answer
160 views
MDX result categorisation
I'm new to mdx and have been trying to solve the following problem for about a day now. Any help would be appreciated:
My Query:
select {[Measures].[Kunden]} ON COLUMNS,
NON EMPTY ...
1
vote
1answer
596 views
MDX Year on Year Sales by Months
I'm stuck on a MDX query, I'm trying to retrieve the following results:
[Time].[2009] [Time].[2010]
[Time].[Months].Members [Measures].[Sales] [Measures].[Sales]
...
1
vote
1answer
495 views
Mondrian MDX Query, Avoid Fatal Error when Member not Found in cube
i want to know if is it possible to avoid mondrian“s fatal error when it doesn't have any member in defined cube. for instance i have this MDX Query
select {[Measures].[Unit_Sales], ...
1
vote
1answer
332 views
MDX Measure Filtering
I am building a Mondrian Cube that shows information for a large range of dates. One of the measures for this cube is an average of a percentage value. Because some of the items in the cube should ...
0
votes
1answer
12 views
MONDRIAN: Flushing the dimension cache
I've read this in the Mondrian documentation:
Flushing the dimension cache
An application might also want to make modifications to a dimension table. Mondrian does not currently allow an ...
0
votes
2answers
174 views
How to parse a SOAP XML response with Namespaces using PHP and SimpleXML
I'm using CURL to send a SOAP request to Mondrian. This is the PHP code where CURL is being used:
$poststring =
'<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" ...
0
votes
2answers
140 views
Which API or framework to use for building dashboards using Pentaho?
I want to build an dashboard for which back end will be Pentaho community edition. I am using Mondrian and MDX queries.
I have tried to use Pentaho CDF for building dashboard but it seriously lacks ...
0
votes
1answer
140 views
Date Ranges in Mondrian
I want to fetch data for TimeStamp t1 to t2. But t1 and t2 might not necessarily in my database table. So, what i want is: it should find next available timestamp greater than or equal to t1 ( > t1 in ...
0
votes
1answer
128 views
Comparison in Where clause in MDX Queries
In MDX Queries, How can i compare whether a level value is less than a certain value or not.
e.g.
SELECT NON EMPTY
[Sales Territory].[Sales Territory Country].Members ON 0,
...
0
votes
1answer
54 views
Who will add rows in fact table of Mondrian? Developer or Mondrian itself?
I want to ask very very basic question related to Mondrian.
I have created one fact table to build Mondrian cube. Currently that fact table does not contain any rows. So, I would like to know Who will ...
0
votes
0answers
141 views
Can Pentaho Mondrian aggregate many-to-many/multi-valued dimensions with Sql Server/SSAS's level of cleverness?
Short version: I like how Sql Server can apparently handle multi-valued dimensions with a bit of cleverness. I'm wondering if Mondrian can do the same.
Background: Bridge Table Pattern
I've been ...
0
votes
1answer
72 views
How to set up dynamic hierarchies in OLAP
I'm currently setting up a bi-solution, and having difficulties by defining the cube and its hierarchies.
A part of the schema definition looks like this:
<Dimension foreignKey="user" ...
0
votes
1answer
56 views
Please suggest ways to start building Business Analytics solutions using existing mysql databases
I believe there are three layers to build up-
1) Presentation Layer/Data Visualization Layer
2) Constucting olap server(like mondrian) to access mysql database and produce results.
3)Using Olap ...
0
votes
1answer
77 views
How to calculate recent row average value using MDX?
My data example:
id value_a
1 1.0
2 2.0
3 3.0
4 4.0
which I want is
id / value_a / recent_n_avg
1 1.0 0.33
2 2.0 1.00
3 3.0 2.00
4 4.0 3.00
recent_n_avg ...
0
votes
0answers
73 views
Adomd.Net doesn't accept UTF-8 response?
Him
I am using Adomd.Net to access my Pentaho Mondrian olap server. Since I had encoding problems (german umlauts) I changed the response encoding to UTF-8. But now Adomd.Net throws an error which ...
0
votes
1answer
164 views
Display property of member in mdx query
I have a Mondrian/MDX query where I grab data within a date range, but I'd like to return time as the value of its property in the result. My current query is like:
With
set [*TIME_RANGE] as ...
0
votes
1answer
108 views
MDX passing varible as string to Item()
I have my MDX query as follow:
with set SelectedEntity as '{Union({[Category].[Tertiary Category].Members}, {[Category].[Secondary Category].Members}).Item("Emails")}'
select ...
0
votes
0answers
86 views
mondrian custom aggregate function
I am very new to Mondrian/OLAP, and I need to modify an existing cube to use a custom aggregate function. I have no idea if this can be done using built-in functionality.
My fact table contains 3 ...
0
votes
1answer
180 views
MDX - Filter on measure value?
I want to write an MDX expression that uses a measure value in the WHERE statement.
For example: suppose I want to show the income from sold products in stores in different cities, but I only want ...
0
votes
1answer
166 views
How to get current row value in a WITH MEMBER calculation MDX?
I would like to calculate a Measure based on the current row.
Problem is I can't find a way to get the current row in a WITH MEMBER part.
WITH MEMBER [Measures].[Test] AS AVG(
NonEmptyCrossJoin(
...
0
votes
0answers
15 views
OLAP with Arabic data
i have Arabic data and when Mondrian when i drill down the data , the data doesn't drilled down.
But with English it is worked fine.
How can i fix this problem?
Thanks in Advance
0
votes
0answers
38 views
OLAP - set a condition on level
Is there a way to set a condition on measure level?
e.x:
<Dimension name="All Locations">
<Hierarchy hasAll="true" allMemberName="Locations" primaryKey="ID">
...
0
votes
0answers
68 views
How we identify the Provider details from Adomd Connections' response
We are using the AdomdConnection object for XMLA Service connection.
Is there any option to get the provider details like Mondrian or MS-SSAS or Oracle-Essbase or any XMLAService with ...
0
votes
0answers
154 views
Creating a secured connection from ASP.NET -> ADOMD.NET to Mondrian on Tomcat
Do anyone have any experience setting up a connection from a secured ASP.NET connection with ADOMD.NET connecting to Mondrian? I am looking for a step-by-step guide to doing this. Client is ...
0
votes
0answers
127 views
Mondrian aggregate tables - how to is this case?
I would like to know what would be the best strategy to create aggregate tables for a Mondrian cube which is at daily grain and
have daily, weekly and monthly average measures.
To be more specific, ...
0
votes
1answer
162 views
help finding mondrian tutorial
I am having trouble finding how to create a simple webapp to analyse its
data on OLAP cubes with mondrian. I have a small database that consists
only of one fact table and 2 dimension tables. Is ...
0
votes
2answers
197 views
How do I create a System DSN
I need to create a System DSN called MondrianFoodMart that points to /MondrianFoodMart.mdb file. The instructions to do this are very
confusing.
More specifically I am trying to do section 2.1 of ...
0
votes
0answers
210 views
MDX Query from Mondrian to SSAS
I'm trying to port this query from mondrian to SSAS 2005 but no luck till know, i think it has to work with out any problem, but when i try to run in SSAS it doesn't give any result but running on ...
0
votes
2answers
241 views
How can I use an MDX Level property in the slicer?
Suppose I have a [Sales] cube which has a [Store] level and a store has a "type" property.
Which query should I use for showing the sum of sales for all the stores of type "Supermarket"?
(e.g. You ...
0
votes
1answer
77 views
MDX request to show number of items sold by type?
I have one data warehouse table that contain one row for each item sold.
Each row contains the item's type.
What MDX request could show the number of items sold for each item type?
What ...
0
votes
2answers
53 views
Query Optimization
i'm having problem with a query generated by mondrian OLAP Server . it's taking too long. the query look like as follows.
select "TABLE1"."column0" as "c0" from "FACT_TABLE" as "FACT_TABLE",
"TABLE7" ...
0
votes
1answer
1k views
How can I return Level Property values in an MDX query?
I've defined a Dimension in a schema file containing multiple Levels. One of my Levels contains multiple properties, like:
<Level name="MyLevel" column="MyLevelColumn" nameColumn="MyLevelName">
...