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

To calculate the percentage of items for various item types using SQL Server 2012

My table is as follows ITEM_CREATION_DATE ITEM_ID ITEM_TYPEID ITEM_FOLDER 2008-04-04 00:00:00.000 ITEM01 12 Y 2008-12-14 00:00:00.000 ITEM04 13 Y 2008-09-24 00:00:00.000 ITEM01 13 Y 2009-12-04 00:00:00.000 ITEM01 12 NULL 2009-04-09…
user1077595
  • 13
  • 1
  • 10
-1
votes
1 answer

Calculate the distance of the shortest path around outside of 3D box

I need some help with the math behind an assignment i was given. The problem was to calculate the distance from the ant to the candy. The candy is always on top of the box and the ant can be anywhere but the sides. The ant can craw on the top and…
Khalob C
  • 147
  • 1
  • 1
  • 10
-1
votes
2 answers

Given cube of size n^3, find no of smaller cubes on surface

Studying up for interviews and going through these questions. 8.Given a cube of size n*n*n (i.e made up of n^3 smaller cubes), find the number of smaller cubes on the surface. Extend this to k-dimension. I don't understand the question very well.…
jb.
  • 9,921
  • 12
  • 54
  • 90
-2
votes
2 answers

How to see how many people are accessing a ssas cube?

I wanted to know how many people are accessing a particular ssas cube. Please let me know the process to find them.
-2
votes
1 answer

I have a relational as well as star schema data model and I want to query for following results

I have a relational as well as star schema data model and I want to query for following results. Total publications for each journal for each year Total publications of each author for each year Total publications of each author for each journal…
-2
votes
1 answer

not showing null item in filter

I'm not able add filtering to null item in excel. I have many items that any item includes fill or null data I want filter items to date and name to items that find out what item has data in month of year. but when I filter month and name of item in…
Noorhan
  • 1
  • 1
-2
votes
2 answers

Simple Java program that squares and cubes a users input number

I am currently taking my first programming class in college and so far have been very good with understanding how to code basic things. This latest assignment has me confused and stumped. My assignment is to: Accept numeric input from the user…
user5495500
  • 9
  • 1
  • 1
  • 1
-2
votes
1 answer

MDX Code much slower than MDX Browser

When I browse my Cube and drag/drop different elements for calculations I get my results within a second or two. However, my MDX code (created by the Wizard) takes around 6 minutes or so.. let's say I have 10 instances of what I drag/drop for…
LearnByReading
  • 1,813
  • 4
  • 21
  • 43
-2
votes
1 answer

Create a drop down list in excel using data from cube

I am currently working on populating the data from the cube on Excel. I am new to Excel. Can anybody suggest me how do we create a drop down list in Excel using the data from the cube as sourse. I have a product list based on the category…
user2919277
  • 246
  • 2
  • 10
-2
votes
1 answer

Creating a L shape in openGL

I want to create a "L" shape so bascially 2 cuboids, I can do this the long way around but want to be able to create it with the vertices method which im struglging to achieve.. Can anyone help? float vertices[8][3] = { { 0, 2, 0.5 }, {…
-2
votes
1 answer

Trouble writing cube root function

I'm trying to write a cube root function named double my_cbrt_1(double n) using the following pseudocode: x = 1 repeat 10 times: x = (2x + n / x2) / 3 return x and then write a main which prints n, cbrt(n), and my_cbrt_1(n) for n = 3.14159 times…
Mochilla
  • 1
  • 2
-2
votes
2 answers

Rubik's Cube Prolog

I have to program a solver for a Rubik's cube 2x2x2, but i'm not getting it. I've already thought about some solutions, but not getting there Can someone help me?
zepbarros
  • 1
  • 1
-2
votes
1 answer

how to generate cubes randomly in opengl / c#

I'm trying to build a game 'blocks' which sees the matches cubes and delete them. This code makes two cubes and moves them along the y-axis. Then, it supposed to disappear and 100 cube in different places to appear. My problem is I don't know how to…
Lara Dax
  • 131
  • 2
  • 5
  • 10
-3
votes
1 answer

Best software to view OLAP Cube

I connected to an analysis server using (32-bit) Ms Excel, but it crashed since the amount of data was big. Then I used SQL Server Management Studio, even that did not worked for me since it seems like SSMS is an administrator tool and you need to…
unleash
  • 3
  • 3
-3
votes
1 answer

OpenGL/Glut glutSolidCube()

I was wondering how I would get the min and max vertices of a cube that has been drawn with glutSolidSphere(1) Note: I am using C++
Cindy
  • 41
  • 1
  • 4
1 2 3
88
89