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
7
votes
3 answers

Creating SSAS 2008 cube partitions using Powershell?

How can we create SSAS 2008 cube partitions using Powershell?
7
votes
1 answer

SSAS Internal error: An Unexpected error occurred (file 'pfcre.cpp' function PFCREngine::SelectCartridge)

Has anyone seen this error before? If so, how did you fix it? I can't find anything on Google. Here is what I have done: I tried doing a Google search but practically nothing came up. I checked all of my permissions everywhere, and from what I can…
7
votes
1 answer

How to use "cube" only for specific fields on Spark dataframe?

I'm using Spark 1.6.1, and I have such a dataframe. +-------------+-----------+-----------------+-------+-------+-------+----------+-------+-------+-------+-------+ | scene_id| action_id| classifier|os_name|country|app_ver| …
7
votes
0 answers

Font error when clicking Attribute Relationships tab in Dimension Designer in SSDT

I am new to SSDT and I'm following the Analysis Services Tutorial called Multidimensional Modeling (Adventure Works Tutorial). And I'm currently on Lesson 3, on the step Modifying the Customer Dimensions under the heading "Modifying Attribute…
7
votes
0 answers

How to apply *.cube Lut in android bitmaps?

I have lut files in .cube format. How to use those .cube files in android for applying the filter effects? I am doing sample in android, applying the filter effects for images. I know how to use the lut's to apply the filters but i don't have any…
Rajesh
  • 521
  • 5
  • 19
7
votes
2 answers

The query contains the XXXXXName parameter, which is not declared. SSRS2008/MDX query

Parser: The query contains the XXXXXName parameter, which is not declared. (msmgdsrv) I have no idea why I keep getting this error. It occurs when I change the MDX in the query designer and trying OKing out of the query designer. The strange thing…
adolf garlic
  • 3,034
  • 7
  • 39
  • 54
7
votes
1 answer

SSAS cube with multiple DB

I have 3 databases with the same structure, but different data, since they are from different clients. Now, I have an existing SSAS project. Its Data Source Views, Cubes and Dimensions can only use or access one DB. What I want is to be able to use…
Raii
  • 303
  • 1
  • 4
  • 15
7
votes
3 answers

Why to build a SSAS Cube?

I was just searching for the best explanations and reasons to build a OLAP Cube from Relational Data. Is that all about performance and query optimization? It will be great if you can give links or point out best explanations and reasons for…
MSU
  • 415
  • 3
  • 6
  • 13
6
votes
2 answers

3D Cube problem, Part 2

This is my 2nd Question on 3D cubes in iphone using CALayer, Core Animation framework, written in Objective-c. For my first question please visit here 3D Cube Problem! Part 1. I am using Brad Larsons code to rotate my 3D cube from this…
Robin
  • 10,011
  • 5
  • 49
  • 75
6
votes
2 answers

ADOMD nuget package for asp.net core

I am looking at ADOMD nuget package. It seems it does not support ASP.NET Core framework. How can I Get this nuget package for ASP.NET core. If not this package, do we have any other alternative to connect to cube ?
OpenStack
  • 5,048
  • 9
  • 34
  • 69
6
votes
1 answer

Blurring a cubemap

Any ideas how to do it? Now i have dynamically generated cubemap, which i use as a reflection texture on torus. Blurring every side separately won't do the trick, right? Because of pixels near the border, which won't get blur impact from their…
spacevillain
  • 1,336
  • 1
  • 14
  • 25
6
votes
1 answer

ssas partition error when build project - The item already exists in the collection

I have created a new cube using SSAS 2013. When trying to build\rebuild the project, I'm getting this error - 'xxx.partitions' cannot be loaded: The item already exists in the collection. Does anyone knows what that's mean? Deploy and process the…
Dror T
  • 221
  • 2
  • 9
6
votes
3 answers

Draw OpenGL on the windows desktop without a window

I've seen things like this and I was wondering if this was possible, say I run my application and it will show the render on whatever is below it. So basically, rendering on the screen without a window. Possible or a lie? Note: Want to do this on…
Yonathan
  • 1,253
  • 1
  • 17
  • 29
6
votes
2 answers

Row and column total in dynamic pivot

In SQL Server 2008, I have a table (tblStock) with 3 columns: PartCode (NVARCHAR (50)) StockQty (INT) Location (NVARCHAR(50)) some example data below: PartCode StockQty Location ......... ......... ......... A …
Sokea
  • 327
  • 5
  • 19
6
votes
3 answers

Infinite cube world engine (like Minecraft) optimization suggestions?

Voxel engine (like Minecraft) optimization suggestions? As a fun project (and to get my Minecraft-adict son excited for programming) I am building a 3D Minecraft-like voxel engine using C# .NET4.5.1, OpenGL and GLSL 4.x. Right now my world is built…
It's me ... Alex
  • 279
  • 4
  • 11
1
2
3
88 89