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

Complex Filter on SSAS calculated Member

I Tried to create a calculated measure inn my SSAS cube with complex filters as the following: ([Measures].[Amount],[Scenarios].[Scenario Key].&[1],[AccountType],[AccountType].[Account Type].&[Bank],[AccountType].[Account…
Mümin
  • 309
  • 1
  • 20
-1
votes
1 answer

Selecting a column not in cube in Spark

I have a dataframe which has say 3 columns x,y and z. I want to get all the three columns in result but I do not want to cube on column z. Is there a way I can do it? P.S. - (I have just given example with 3 columns but I have quite a long list of…
Abhishek
  • 235
  • 3
  • 11
-1
votes
1 answer

How to connect Kyvos cube (Bigdata Cube) in Excel?

How to connect Kyvos cube (Bigdata Cube) in Excel
Rajiv Singh
  • 958
  • 1
  • 9
  • 14
-1
votes
1 answer

How is data wrangling different than a data cube processing?

I know that a data cube is a transforming multi-dimensional data which keeps changing with time, whereas data wrangling definition says it's transforming the data making it more valuable. Isn't a data cube more meaningful and valuable piece of…
nitinr708
  • 1,393
  • 2
  • 19
  • 29
-1
votes
1 answer

HR Cube in SSAS

I have to design a cube for students attendance, we have four status (Present, Absent, Late, in vacation). the cube has to let me know the number of students who are not present in a gap of time (day, month, year, etc...) and the percent of that…
whd.nsr
  • 684
  • 6
  • 12
-1
votes
2 answers

SSAS Cube deployment error

I was going to process the cube deployment and found the error. I changed the target server name from 'localhost' to this,and tried different way but in vain. Here is the snap from my SSMS
BlackCat
  • 1,932
  • 3
  • 19
  • 47
-1
votes
1 answer

cognos tm1 linking cubes

i have one cube A which contains, lets say, 4 dimensions: name, location, amount, sum total. and other cube b: location, currency, exchange rates. Now i want that if user inputs something in cube A according to the location , then TM1 must take the…
sword_s
  • 3
  • 4
-1
votes
1 answer

(SSAS) Need to use the total of a calculated measure in other calculations irrespective of - whether they qualify or not

I have a dimension which categorizes labor as direct and indirect now I have a measure [indirect hours] which comes only for indirect employees and others remain blank. and another measure [direct hours] which comes only for direct employees and…
-1
votes
1 answer

How Do I Represent An OLAP 4D Cuboid?

I am going through the exercise posted below. I don't quite understand how to represent the 4th dimension on paper. If it was just customer, date, product that will be straightforward. Do I have to rollup on something in order to get the fourth…
Edoardo Moreni
  • 408
  • 2
  • 10
  • 24
-1
votes
1 answer

Transform Numbers to Text

A field in my cube contains numerical values which I would like transformed and displayed as text. For example 1 is a sale 2 is a return etc Is a named caculation best?
SQ-what
  • 49
  • 5
-1
votes
1 answer

Microsoft sql server ssis automatic process cube creation

I deployed a Microsoft sql server 2008R2 with sample data. Installed report builder 3.0, visual studio 2008. These all installed on a windows server 2008 enterprise. I successfully created Cube from ssas and used it for deploying report. Now, my…
-1
votes
1 answer

Draw real BI 3D cube

I am trying to find a program / software which can help me to produce a real 3D Business Intelligence OLAP cube... not just to create the cube with simply data but have the real cube produced i.e. a visualisation of the cube. Anyone knows what…
-1
votes
2 answers

Python Turtle, how to get colors to change by themselves?

creating an image of a cube for minecraft. Trying to get the colors inside the box to change by themselves. Is there some kind of integer algorithm I can use to achieve this besides using random? Because right now, it creates random colors, but I…
pewpew
  • 700
  • 2
  • 9
  • 32
-1
votes
1 answer

Draw a cube in Opengl using mouse

I am trying to draw a simple cube in opengl using the mouse. Here's the basic step I followed: 1. Get mouse click coordinates. One,when the mouse is first clicked (say x1,y1) and the other, when the mouse is released i.e after the drag (say…
-1
votes
1 answer

Load .png file as a texture to cube ios

I'm trying to load .png file as texture to my cube. [self loadTexture:&myTexture fromFile:@"my_png.png"]; glEnable(GL_TEXTURE_2D); glActiveTexture(GL_TEXTURE); This is a function to load it, but unfortunatelly it's not working. -…