Tagged Questions
on SQL server family of products, a cube is a set of related measures and dimensions that is used to analyze data.
9
votes
5answers
4k views
Easiest to code algorithm for Rubik's cube?
Edit: I should rephrase this, what would be a relatively easy algorithm to code in Java for solving a Rubik's cube. Efficiency is also important but a secondary consideration.
Orig: What is the ...
8
votes
2answers
1k views
What is the most efficient way to draw voxels (cubes) in opengl?
I would like to draw voxels by using opengl but it doesn't seem like it is supported. I made a cube drawing function that had 24 vertices (4 vertices per face) but it drops the frame rate when you ...
8
votes
3answers
1k views
Mapping A Sphere To A Cube
There is a special way of mapping a cube to a sphere described here:
http://mathproofs.blogspot.com/2005/07/mapping-cube-to-sphere.html
It is not your basic "normalize the point and you're done" ...
5
votes
2answers
99 views
Creating SSAS 2008 cube partitions using Powershell?
How can we create SSAS 2008 cube partitions using Powershell?
4
votes
2answers
148 views
CSS3: Cube with shadow
I think images speak louder than words in this case.
I want to get this effect:
But the best I can do with CSS3 is this:
And the code for this is absolutely terrible:
box-shadow: 1px 1px ...
4
votes
3answers
814 views
How to plot 3D grid (cube) in Matlab
Hi I would like to plot transparent cube-shaped grid with lines in it. Something like this:
However, I managed only to draw a 2D grid:
[X,Y] = meshgrid(-8:.5:8);
Z = X+1;
surf(X,Y,Z)
I use Matlab ...
4
votes
1answer
770 views
Rotating 3D cube perspective problem
Since I was 13 and playing around with AMOS 3D I've been wanting to learn how to code 3D graphics. Now, 10 years later, I finally think I have have accumulated enough maths to give it a go.
I have ...
4
votes
5answers
2k views
browsing olap cubes
dows anybody know any fine open source cube browser???
ideally it would be something built with plain javascript...
does it even exists???
I'm planing to use it with classic asp agains a sql ...
3
votes
4answers
147 views
Cube root of a negative number
I'm trying to find the cube root of a negative number but I get a NaN. Any help?
System.out.println(Math.pow(-8, 1.0 / 3.0));
3
votes
1answer
305 views
android/ openGL cube with GL_TRIANGLE_FAN
I am some what new to openGL ES and I want to build a simple cube, but seem to be having some problems letting the indice byte buffer that I want to have 4 different TRIANGLE_FANs, how would I go ...
3
votes
1answer
288 views
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 ...
3
votes
3answers
839 views
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 ...
3
votes
2answers
2k views
Create a Chrome cube in OpenGL / Glut?
I'm attempting to make a chromed cube in GLUT / OpenGL and I'm not sure exactly how to do it.
I looked up a "Materials Table" in a textbook which showed "Chrome" as being:
Ambient: (0.25, 0.25, ...
2
votes
1answer
223 views
HTML5 3d Nested Cubes
For a demonstration, I want to draw a cube with canvas in HTML5. This cube will be rotatable like this example. But further, the cube will contain some cubes inside. While the container cube rotates, ...
2
votes
1answer
54 views
Java: Cognos like cubes
What are the various options to have a cube designer in Java other than Cognos ?
Basically I need to see a multi dimensional cube and the user must be able to select the columns to filter by.
2
votes
3answers
280 views
WebGL triangles in a cube
In this tutorial author displays a cube by defining its 6 faces (6*4 vertices) and then telling webgl about triangles in each face.
Isn't this wasteful? Wouldn't it be better to define just 8 ...
2
votes
2answers
280 views
How to plot a data cube in python
I was wondering if there's a way to plot a data cube in Python. I mean I have three coordinate for every point
x=part.points[:,0]
y=part.points[:,1]
z=part.points[:,2]
And for every point I have a ...
2
votes
1answer
174 views
Rubik cubefinder.py error
I wanted to use some code that I found for detecting the Rubiks cube from this site: cubefinder.py.
After managing to install all the OpenCV libraries, I get this error when I show the cube to the ...
2
votes
1answer
391 views
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 ...
2
votes
1answer
617 views
Crosstab/Cube/Pivot Components for Delphi
I'm looking for a Delphi VCL crosstab/cube/pivotcube/olap grid component for Delphi 2009, 2010, or XE. I'm willing to sacrifice advanced features to get something open/free (or very cheap if I must) ...
2
votes
1answer
107 views
Cube Design Question - SQL Server
We have about 10-15 dimension tables that reflect different levels of granularity and about 15-20 metrics we want to track. Does it make more sense to build one cube at the most granular level and ...
2
votes
5answers
558 views
How to apply textures to a quad in order to texture a cube?
Recently I have been looking into OpenGL, and I've got up to the stage were I want to texture things. I thought I would start with texturing a simple cube.
I currently have this code, and understand ...
2
votes
1answer
557 views
MDX: use dimension values on columns
I wanted to use dimension properties on columns. So, in the mdx query, I dragged in those properties from the dimension "member properties". But, for some reason, the values for those properties are ...
2
votes
1answer
1k views
Documentation Tempate for SSAS Cube
I need a template to document an SSAS cube.
Cube info
Single source of data
One main Fact table
Five direct dimensions
Two many-to-many dimensions
48 Partitions, 48 Aggregations
Can anyone point ...
2
votes
3answers
343 views
Guidelines for determining the maximum frequency to process an SSAS cube?
We have an Analysis Services cube that needs to be as real-time as possible. It's a relatively small cube that currently takes a couple of seconds to process.
Are there any guidelines for this? I'm ...
2
votes
2answers
535 views
Cube Calculated Member Question
I'm rather new to SSAS and am completely stumped on how to solve this problem. I have a dimension called Thresholds. Within the Thresholds dimension there are the following Members:
[Threshold ...
2
votes
2answers
2k views
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 ...
2
votes
3answers
112 views
how to find out which columns to join
Is there an easy way to find out the column dependencies between tables in the DSV of a cube?
The reason I am asking this question is: When there are lots of tables (fact and dim tables) in the dsv, ...
2
votes
7answers
8k views
How to animate rotating cube in C#?
I would like to do something like this: a rotating cube on a form. I don't want to use any external library or dll, just pure .NET 3.5 (without directx). And a cube build with lines only. Could you ...
1
vote
1answer
57 views
How to break date field into year, quater, month, day in FastCube (under Delphi XE2) using coding?
What I want to achieve:-
I want to add the fields such as year_mydatefield, month_mydatefield, quater_mydatefield on x-axis.
These break down fields are available during runtime in fields list, but ...
1
vote
1answer
82 views
Subtract 2 measures as Grand Total in SSAS Cube Browser
I guess it's a common and basic issue. I'm trying to get the "net value" of a measure depending on a dimension. Let me explain..
I have a fact table factTicket and a dimension called Operation who ...
1
vote
1answer
120 views
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 ...
1
vote
1answer
57 views
Rotating cube to show only one side
I have a 3D-cube made with opengl which rotates randomly and stopps occasionally showing up to 3 of its sides. I would like to have the cube falling onto one of the sides (x, -x, y, -y, z, -z). I ...
1
vote
0answers
52 views
Any sample on how to expose a olap cube as oData so it can be used using powerpivot?
I'm looking for a sample on how to expose an olap cube as an odata feed so it can be consumed by powerpivot. I do not want to provide direct access to the cube.
1
vote
1answer
47 views
Setting up a relative dimension?
I have a pretty simple scenario but a very large data set (using even simpler example below to illustrate my issue).
Let's say i have a cube comprised of Country table(fact) that has one dimension ...
1
vote
1answer
215 views
How to render OpenGL on a live wallpaper (It's way too HARD!)?
So imagine you have and android application (not live wallpaper), and lets say it features a cube rendered in OpenGL with textures and lighting and all that. Now, how would you port that into a live ...
1
vote
1answer
155 views
Is there a way to simulate GROUP BY WITH CUBE in MySql?
MySql supports GROUP BY WITH ROLLUP which will return aggregates for the last x of the n columns in the group by but does not support GROUP BY WITH CUBE to take all combinations of the n columns and ...
1
vote
0answers
371 views
newbie help with jquery imagecube
Hy I'm new here and new to everything that's related to webdesign and coding so maybe I have silly questions but that's it!,and also sorry for my english - hope you will understand what I have to say.
...
1
vote
1answer
95 views
How to get median values when using WITH CUBE?
In a nutshell: when using WITH CUBE in MSSQL 2005, is there any way of directly calculating median values, preferably without using loops?
Some code:
CREATE TABLE #Example (
ID1 INT,
ID2 ...
1
vote
1answer
193 views
Making a graphics-oriented rubix cube solver in Java
It will look something like this:
I'm wondering what the best way of going about this is, with regard to making the GUI (Swing vs. OpenGL) and any other issues you can think of.
I'm not wedded to ...
1
vote
1answer
643 views
OpenGL ES 1.0 : Six colors cube automatic rotation but some faces are missing whether i (un)comment some code !
i am trying to build a one-different-color-per-face cube in Android API 3 OpenGL (so OpenGL ES 1.0). ( I am a beginner in OpenGL programming ). I managed to make it rotate in a constant period, but ...
1
vote
1answer
1k views
SQL Analysis Services OLAP TIME dimension
Hi
i'm struggling with adding time dimension to OLAP cube.
I can get everything in cube to work except date.
In my source data view I have datetime column.
I go by using Dimensions->New ...
1
vote
1answer
160 views
Marketing penetration in OLAP cube - Help with specific MDX measure definition
I am pretty new to MDX but I know what I want accomplish but its proving very hard. Basically, I have a dataset where each row is a sale for a customer. I also have postcode data and the UK ...
1
vote
2answers
700 views
Any way to control number of decimal places while browsing SSAS cube?
When I browse the cube and pivot Sales by Month ,(for example), I get something like 12345.678901.
Is there a way to make it so that when a user browses they get values rounded up to nearest two ...
1
vote
2answers
618 views
A 360 degree Sphere panorama into Cube panorama transformations algorithm (pseudocode or at least full logic wanted)
So we can take such image from wikipedia
And try to map it for future cube or something like cube
And than distort for top and bottom like
Some one may think that doing disturtion only for half ...
1
vote
2answers
140 views
How to retrieve from a local offline OLAP cube the MDX query that generated it?
Any offline cube actually contains the MDX statement that generated it, how can i retrieve it's CREATE and INSERT queries?
1
vote
1answer
147 views
MDX result categorisation
I'm new to mdx and have been trying to solve the following problem for about a day now. Any help would be appreciated:
My Query:
select {[Measures].[Kunden]} ON COLUMNS,
NON EMPTY ...
1
vote
2answers
404 views
SQL Server Analysis Service: Need to suppress empty results
We have a very sparse cube in SSAS. The size of the cube is only 50M bytes in MOLP storage. When writing your own MDX query, you can use NON EMPTY/NONEMPTY to suppress/filter out empty results. But we ...
1
vote
2answers
366 views
Adding an extra row to an MDX result set
I have a very simple MDX query that retuns the contents of a dimension.
I would like to inject one more row to the result set as part of the MDX.
Is this possible?
1
vote
1answer
65 views
Data Warehouse: Modelling Workload Allocations
We have a system that tracks the allocation of a unit of work, from receiving that unit of work till completing that unit of work.
A unit of work has a number of attributes, it's source, it's type ...