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

Discover Cube Error befor Production Phase

Goal: Apply a fresh deployed cube in the production environment. Problem: How should I enable to discover any problem in the cube when it is updated automatic once a week before it will be applied in the production phase? Information: In this…
HelloWorld1
  • 13,688
  • 28
  • 82
  • 145
-4
votes
1 answer

referenced relationships sql server analysis Services, How can i create it

enter image description hereI'm beginner in SSAS, actually I work on SSAS Olap cube I have an issue which is I can not add customer fields to charge dimension or to charge fact (to be displayed on power bi ) Thank you in advance
Djaber T
  • 3
  • 4
-4
votes
1 answer

make a calculator that calculates the volume of a cube

I am new to python and my problem is when I want to make a calculator that calculates the volume of a cube: >>> print(int ** 3 (input ("Enter the side length: "))) Enter the side length: 4 Traceback (most recent call last): File "",…
A.s
  • 7
-4
votes
1 answer

A Few Tips on SSAS Cube and Dimension Development

The following are a few tricks I've found to fix reoccurring issues that don't seem to be fixed from any other question or forum.
Ian
  • 63
  • 7
-5
votes
2 answers

How can I find out the vertex coordinates of a rotating cube?

I'm currently trying to make an orientation calculator in java and I'm having a little trouble with rotation of various objects. Let's say we have a cube with an initial position and each of its vertices are known (and also its center). Then the…
user1489886
  • 121
  • 1
  • 4
  • 9
-6
votes
1 answer

Filling a cube (back-face culling algorithm)?

I want to fill my cube. I found back-face culling algorithm. Can you explain me how it works? I have 8 points in vector: Maybe you know another easier algorithm or explain me what I should do with back-face culling? (wallX[0] - point 0; wallX[1]…
urusmi
  • 1
  • 1
1 2 3
88
89