Questions tagged [cube]

Cube or OLAP cube, is a method of storing data in a multidimensional form, generally for reporting purposes. In OLAP cubes, data (measures) are categorized by dimensions. OLAP cubes are often pre-summarized across dimensions to drastically improve query time over relational databases. Used on the SQL server family of products.

An OLAP cube or just a cube, is a method of storing data in a multidimensional form, generally for reporting purposes. In OLAP cubes, data (measures) are categorized by dimensions. OLAP cubes are often pre-summarized across dimensions to drastically improve query time over relational databases. The query language used to interact and perform tasks with OLAP cubes is multidimensional expressions (MDX). The MDX language has been adopted by many vendors of multidimensional databases.

Although it stores data like a relational database does, an OLAP cube is structured very differently. OLAP cubes, however, are used by business users for advanced analytics.

Operations

  • Slicing - the act of picking a rectangular subset of a cube by choosing a single value for one of its dimensions, creating a new cube with one fewer dimension.
  • Dicing - producing a subcube by allowing the analyst to pick specific values of multiple dimensions.
  • Drill-up and drill-down - allowing the user to navigate among levels of data ranging from the most summarized (up) to the most detailed (down).
  • Roll-up: A roll-up involves summarizing the data along a dimension.
  • Pivoting - allows an analyst to rotate the cube in space to see its various faces.
1326 questions
4
votes
1 answer

How to access internal dashboards in Cube?

I am currently playing around with Cube . I have been able to send events to an evaluator and can query these via HTTP GET. How do I go about making a customized dashboard to visualize the events/queries? I saw this website…
4
votes
1 answer

Rotating 3D cube perspective problem

Since I was 13 and playing around with AMOS 3D I've been wanting to learn how to code 3D graphics. Now, 10 years later, I finally think I have have accumulated enough maths to give it a go. I have followed various tutorials, and defined screenX (and…
Andreas Jansson
  • 3,137
  • 2
  • 30
  • 40
4
votes
1 answer

.Net OLAP Cube Explorer control with HTML5 mobile compatibility

I'm currently looking for control suite that supports mobile business intelligence reporting. The mobile BI site will be a complimentary site for an existing SharePoint BI solution that presents SSRS / PerformancePoint information to the user. The…
Brian Scott
  • 9,221
  • 6
  • 47
  • 68
3
votes
0 answers

How to create virtual cube in mondrian cube framework?

I have got two tables through which I need to generate a cube report, I need to displayy measures from columns of both the tables. I browsed through the documents on the website and learned that VirtualCube is the way to go if I am to accomplish…
Juzer Ali
  • 4,109
  • 3
  • 35
  • 62
3
votes
2 answers

WebGL triangles in a cube

In this tutorial author displays a cube by defining its 6 faces (6*4 vertices) and then telling webgl about triangles in each face. Isn't this wasteful? Wouldn't it be better to define just 8 vertices and tell webgl how to connect them to get…
oOo
  • 35
  • 4
3
votes
2 answers

Create a Chrome cube in OpenGL / Glut?

I'm attempting to make a chromed cube in GLUT / OpenGL and I'm not sure exactly how to do it. I looked up a "Materials Table" in a textbook which showed "Chrome" as being: Ambient: (0.25, 0.25, 0.25), Diffuse: (0.4, 0.4, 0.4), and Specular:…
Mithrax
  • 7,603
  • 18
  • 55
  • 60
3
votes
1 answer

Exponential moving average in MDX

I have bellow output of cube date value ---- ----------- 2021-01-06 10 2021-01-07 Null 2021-01-08 Null 2021-01-09 15 2021-01-10 18 2021-01-11 25 My question is, how can I create exponential moving average with…
Mohammadreza Khedri
  • 2,523
  • 1
  • 11
  • 22
3
votes
1 answer

android/ openGL cube with GL_TRIANGLE_FAN

I am some what new to openGL ES and I want to build a simple cube, but seem to be having some problems letting the indice byte buffer that I want to have 4 different TRIANGLE_FANs, how would I go about doing this/ rewriting my code: public class…
travis
  • 159
  • 3
  • 14
3
votes
2 answers

How to plot a data cube in python

I was wondering if there's a way to plot a data cube in Python. I mean I have three coordinate for every point x=part.points[:,0] y=part.points[:,1] z=part.points[:,2] And for every point I have a scalar field t(x,y,z) I would like to plot a 3D…
Brian
  • 13,996
  • 19
  • 70
  • 94
3
votes
0 answers

SSAS List roles and dimension permissions (RLS) from Analysis Services

I'm trying to get all the roles from Analysis Services and their dimensions permissions. I have already been successful, managing to extract users and their roles, however I have not found anywhere if it is possible to extract permissions by…
Guilherme Matheus
  • 573
  • 10
  • 30
3
votes
1 answer

SSAS MDX Calculation - Sum based off a group value

I work for a hotel company and I have set up a fact table with the granularity of a stay night for each guest, e.g. if a guest stays for 3 nights, there would be a row for each night of the stay. What I am trying to do is create a measure for the…
Femmer
  • 133
  • 12
3
votes
1 answer

Performance issue when converting MDX to DAX queries

I have a MDX query which I want to convert to DAX to improve performance, however the result is not as expected, MDX took 11 secs to complete while DAX was 34 secs. any suggestion to improve the DAX query MDX Query: SELECT { [Measures].[Internet…
Nhon Tran
  • 113
  • 1
  • 1
  • 7
3
votes
2 answers

SSAS - how to perform partial cube processing without losing data

I have cube where measure groups are partitioned into 2 partition for different time frame as below: latest 2 years data ( PRT_DATA_2YEARS ) older data than 2 years ( PRT_DATA_REST ) By processing 1st partition ( with any of processing option ),…
ScriptSoft
  • 163
  • 1
  • 2
  • 11
3
votes
1 answer

Use Python to Query SQL Server Analysis Services (SSAS) cube Data

There is a SQL analysis service resource in my organization, we can use excel or powerbi to connect to the cube use a server name (tooldata.amr.xxx.com) and get the data. What i want is use python or excel to automate the data query and output to a…
zheng wee
  • 121
  • 1
  • 1
  • 8
3
votes
1 answer

postgres cube euclidean distance query performance issues

I have a postgres database containing a table of documents with word embeddings of 100 dimensions and using it to find similar documents. CREATE TABLE documents( id bigint, title text, body text, vector double[], PRIMARY KEY(id) ); I…
Santino
  • 776
  • 2
  • 11
  • 29