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
5
votes
1 answer

How to convert a fisheye image to 5 or 6 cubic image

I want to unwarp a 2D fisheye image to a 3d cube.So I thought it is necessary to unwarp the fisheye image to 6 cubic image and remap 6 cubic image to the 3d cube.And Now I am confused about the first step and can't find some specific paper and code…
user2968731
  • 117
  • 1
  • 9
5
votes
3 answers

Filtering a Measure (or Removing Outliers)

Say I have a measure, foo, in a cube, and I have a reporting requirement that users want to see the following measures in a report: total foo total foo excluding instances where foo > 10 total foo excluding instances where foo > 30 What is the best…
Colin
  • 309
  • 2
  • 5
  • 15
5
votes
1 answer

SSAS: Percent of Total not working in hierarchy

I have a simple olap cube - one set of measures and some unexciting dimensions. I've add one calculation to get the "percent of total" sales against the gross sales measure. The code for this calculation is: ([Dim Stores].[Store…
Warren
  • 1,984
  • 3
  • 29
  • 60
5
votes
2 answers

How can I draw multiple 3d cubes in matlab

I'm trying to draw 2 cubes in one M file. This is my code: format compact h(1) = axes('Position',[0.2 0.2 0.6 0.6]); vert = [1 1 1; 1 2 1; 2 2 1; 2 1 1 ; ... 1 1 2;1 2 2; 2 2 2;2 1 2]; fac = [1 2 3 4; ... 2 6 7…
5
votes
2 answers

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 available for use from any client which doesn't support…
Dave Bauman
  • 9,252
  • 1
  • 19
  • 19
5
votes
1 answer

How to render a 3d cube in LWJGL?

I can`t find a good tutorial on the web, about rendering a 3d cube in the Lightweight Java Game Library! I have been learning LWJGL for some time now. I know how to draw 2d objects. Could Somebody Help me?
thegoodone
  • 113
  • 1
  • 4
  • 10
5
votes
1 answer

Plot a cube of 3D intensity data

I have k cubes of (n,n,n) intensity values and I would like to plot them. I consider them as diffusion tensors in diffusion MRI and I would like to visualize them (maybe as ellipsoids) and then try to "align" in some way. At present I simply plot…
no_name
  • 1,315
  • 2
  • 16
  • 20
4
votes
1 answer

Data mart vs cubes

I've got confused with warehousing process... I'm in a process of building a data mart but the part I don't really understand is related to cubes. I've read some tutorials about SSAS but I don't see how can I use this data in other applications.…
ilija veselica
  • 9,414
  • 39
  • 93
  • 147
4
votes
1 answer

Can any dimension be added to a SSAS CUBE dynamically

We build an SSAS ROLAP cube where data source is memSQL. The cube is built using Visual Studio 2019 and the driver used to connect to memSQL data source is "MySQL .NET Provider 8.0.19". The cube is built and processed successfully. As it is a ROLAP…
Koushik Chandra
  • 1,565
  • 12
  • 37
  • 73
4
votes
1 answer

Flutter 3D Cube Effect

I'm asking you how I can create this effect in a Flutter?
Cristian F. Bustos
  • 473
  • 1
  • 8
  • 17
4
votes
1 answer

When I run this code it return that "exit status 143" in java

When I run this code it return that "exit status 143" in java, I don't know what's going wrong there, hope someone can help me fix this problem. class Main { static double diff(double y, double x, double d){ if((y*y*y)+d>x) return…
TIGUZI
  • 231
  • 1
  • 3
  • 12
4
votes
0 answers

Postgres cube type distance vector index slower than seq scan

With a 128 dimension column and a distance query as below: CREATE TABLE testes (id serial, name text, face cube); CREATE INDEX testes_face_idx ON testes USING gist(face gist_cube_ops); explain analyse select name from testes order by face <->…
Kobus
  • 111
  • 2
4
votes
2 answers

How to properly rotate a cube on click?

So what I'm trying is basically rotating a cube by clicking on buttons that are either located right on the cube or floating next to it. For now I keep them floating because I was trying out a lot and it prooved to be easier this way, but placing…
4
votes
0 answers

What does SSAS really do when "processing"?

As I can see, the cube issues some queries to the db when processing, like "select xxx from sss", and then build index. But the doc said, cube will "preaggregate" the measures by dimensions so that it's faster than query the database…
L_G
  • 209
  • 2
  • 10
4
votes
2 answers

Materialized View vs SSAS Cube

Here is current scenario - We have 3 tables in Oracle DB (with millions of records) which are being used to generate SSRS reports. These reports are displaying complex data calculation such as deviations, median etc. SSRS fetch data using stored…
Prateek Singh
  • 863
  • 1
  • 8
  • 28