The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
97 views

Distance between points on surface of cube

Let (x1, y1, z1) and (x2, y2, z2) be two points in Euclidian 3-space on the surface of an axis-aligned side-length-2 cube centered at the origin. How do I efficiently compute the distance (or squared ...
0
votes
0answers
40 views

how to make a cube fall smoothly down the Y-Axis then vanish in open Gl,C#

I'm trying to make a cube fall down the Y-Axis then vanish from top to bottom but I think I have a problem with the position of the camera or the point the camera is looking at...?? Any help please ...
0
votes
1answer
25 views

Wondering how to direct out into array then output from array

I am having to write a program that loads the first 10 integers' into an array. I've tried it every way and have not been able to make it work with an array. This is as far as I have gotten. public ...
0
votes
1answer
69 views

Texture mapping on a cube appears wrong

I've created a cube and then changed its coordinates to make it a beam like this (click me). I am sure that the texture is being loaded fine as I have successfully loaded other textures in the ...
0
votes
0answers
67 views

Trying to reset a cube's initial rotation produces weird results

I have rotating cube which I rotate 90° on the x,y or z-axis. After a rotation is finished I want to reset the rotation by simply setting: cube.rotation.x = 0; cube.rotation.y = 0; cube.rotation.z = ...
0
votes
1answer
101 views

intersection of a cube's front face with a raycaster is not working

In order to know the current front face of a rotating cube I created a raycaster telling me which part of the cube intersects with it. So far I do not get any intersections although I think I did ...
0
votes
1answer
180 views

MDX, calculated member with olap cube

I have a question related to cubes with Microsoft Technologies, we have an SSAS Cube built on BIDS 2008 version, and the requirement is to group (sum) the measure quantity taking the previous twelve ...
0
votes
1answer
181 views

three.js getting the front face of a cube

I am currently playing around with this example here: http://mrdoob.github.com/three.js/examples/canvas_geometry_cube.html and I am wondering if it is possible to know which side of the cube is ...
0
votes
0answers
24 views

Is it possible to backup a single cube in SSAS? [duplicate]

Possible Duplicate: How to backup and restore only one cube in SSAS database I have a SSAS database with 10+cubes. Each of these cubes can have 100 million+ rows loaded into them per day, ...
0
votes
2answers
143 views

Funky OpenGL cubes

Aha! It seems my problem was that my zNear value given to gluPerspective had to be greater than 0, and I had to enable the depth buffer to get it working. Ive updated the code below to be working. ...
1
vote
0answers
135 views

Undefined result when Displaying Multiframe DICOM Image With Marching Cubes and OPENGL

Well, i've been working with DICOM for a while and now i've some problems ,with displaying MULTIFRAME CT images . i'm using marching cubes (of course) to construct the surface and then opengl (under ...
0
votes
1answer
132 views

Searching Within OLAP cube in Excel

I am connecting to an SSAS OLAP cube within Excel and creating a pivot table with it. Is there a way to search through the cube hierarchies for certain fields, without having to expand through all ...
0
votes
1answer
633 views

SQL Server OLAP CUBES (Tutorials) [closed]

Hope this isnt a repost, at least I didnt find any results that I was happy with on google. The thing is I don't know much about OLAP connections but I'm decent when it comes to SQL requests but I ...
0
votes
1answer
201 views

PyOpenGL Drawing a Cube with VBOs

I have a question (well a few actually) 1) How do you render a cube in Python with Vertex Buffer Objects? 2) How could I relocate that cube several times 3) How would I go about not rendering certain ...
1
vote
0answers
192 views

How do I create a total row in MDX from two cubes

Im currently trying to get information from two seperate cubes (which ive managed), and add a total row (which uses data from both). The line that is commented out produces a 'different ...
1
vote
1answer
211 views

execute 2 cubes in SSAS with SSIS package

I have 2 separate cubes in SSAS , I want to process these cubes with SSIS package but I want to process my cubes singly , this means that I dont want use full process and my goal is to process cubes ...
0
votes
1answer
123 views

Limit data to be generated in cognos cube generation by year

Ive been working with cognos from a year now but I stumble into another problem that needs urgent workaround resolution. I have this model that automatically generates cube (using a batch file) every ...
0
votes
1answer
289 views

How to use MDX to calculate the difference between dates on seperate rows?

I am quite new to MDX and I need to write a query that gives me the day difference between two dates. The problem is that the dates exist on two different rows in my data. For example: My Fact table: ...
0
votes
1answer
276 views

Python package recommendation for data analysis and learning

I want to build an analytics engine on top of an article publishing platform. More specifically, I want to track the users' reading behaviour (e.g. number of views of an article, time spent with the ...
0
votes
0answers
121 views

ADOMDConnection StringBuilder?

I am just wondering whether is there any class similiar to SqlConnectionStringBuilder for ADOMD as ADOMDConnectionStringBuilder in .Net? I need to assign the connection parameters in Config file and ...
1
vote
1answer
53 views

Calculating the largest side of a 3d object - MySQL function to select second greatest value

I have three fields for width, height and depth. Let's say I have these values width = 5 height = 0.1 depth = 3 I would like to filter out greatest two values from these values and do maths for ...
0
votes
2answers
208 views

Get the Attributes filter by using its display name?

I am trying to desgin a MDX query with Date filter which is an hierarchy attribute.. Now, I need to place the attribute filter value in the "where" clause.. When I drag and drop the attribute say - ...
0
votes
2answers
370 views

Retrieve Datareader using Objects

I have worked on retrieving the data from SQL database using Datareader and populate it in Datatable.. But, I am wondering whether is there any way to handle the data from datareader without using ...
0
votes
1answer
207 views

How to retrieve data from SSAS Cube using EDMX?

I was given a cube with all relevant information. Now, I want to query cube and get the data through .net EDMX framework. Could anyone help me out from where I should start on this? I am really ...
1
vote
1answer
104 views

Cube Roles - Restrict data by territory using Active Directory

I have a cube which I want to restrict users to only be able to access data in their own territory. The territory data could be joined with their user name and a few various tables to link to my ...
3
votes
2answers
354 views

detecting the side of a cube that is facing the camera in android opengl es

So I started creating an app to learn openGL es on adroid. First I went through a chapter that explained how to construct a cube and get it to rotate using the system timer. I then mapped each side to ...
1
vote
1answer
358 views

Isovalue in Marching Cubes Algorithm

I was reading the article here: http://paulbourke.net/geometry/polygonise/. Currently, I have a minecraft like terrain generated using simplex noise which I divided into 16x16 chunks that has a ...
0
votes
1answer
284 views

Create Global Cube with measurements from multiple cubes

I have 2 cubes each with their own measurements. Some measurements from one cube are linked to to the second. For some reason, the query won't run if I use said linked measurements, but it will run it ...
1
vote
1answer
45 views

What sound formats does Sifteo support?

I'm trying to play some sounds on my cubes but no luck I have a cheers.wav in my /assets/sounds and i'm calling it like this: Sound cheers = Sounds.CreateSound("cheers"); cheers.Play(1,0); changing ...
0
votes
1answer
385 views

SQL Server BI: SIngle cube, multiple fact tables

I'm new to creating cubes, so please be patient. Here's an example of my data I have multiple companies, each company has multiple stores. Sales are each linked to a particular company, with a ...
0
votes
2answers
1k views

Drawing multiple cubes at random positions in opengl es android

Using OpenGL ES I am rendering a simple cube class that draws it at the centre of the screen. However, I want to be able to draw multiple such cubes on the screen at random positions but don't know ...
0
votes
1answer
2k views

How to this cube to draw in XNA with C#

Ok guys, this one is literally killing my mind, as I've been able to render models just fine (in fact I had to in order to test out my camera). However now that I'm trying to draw a cube from a ...
0
votes
2answers
2k views

Cube mesh with libgdx android

I've done a mesh with libgdx and I'm trying to fill the mesh with some color. create() { if (bigMesh == null) { bigMesh = new Mesh(true, 8, 8, new ...
0
votes
2answers
2k views

Ray tracing box intersections

So I'm back with another ray tracing question. My code renders spheres all fine and dandy, but cubes aren't really working. I'm using this code to test for intersections: http://pastebin.com/qgm6vpdx ...
0
votes
1answer
507 views

Process Analysis Services Database With C# Is Freezing

I'm using the Microsoft.AnalysisServices.Server class to connect to an instance of SSAS. I retrieve the database by name and call the Process method with ProcessType.ProcessFull as the option. ...
0
votes
1answer
706 views

Displaying multiple cubes in OpenGL with shaders

I'm new to OpenGL and shaders. I have a project that involves using shaders to display cubes. So basically I'm supposed to display eight cubes using a perspective projection at (+-10,+-10,+-10) from ...
-3
votes
2answers
695 views

Get data from olap cube in c#?

What is the best solution to get data from an olap cube?
1
vote
2answers
1k views

Connection failing when I try to process a cube in BIDS

There is probably a simple answer to this question but I do not have much experience with SQL Server/SSAS. I can connect to my local server PCNAME\SQLEXPRESS in SQL Server 2008. On that server I have ...
1
vote
2answers
717 views

Multi-dimensional data processing alternatives

Iam looking for a multi-dimensional data processing but without having to use any OLAP. For example, I have a table of sales transactions. I would like to have the total sales on many dimensions like ...
0
votes
1answer
369 views

Is a single table a bad starting point for OLAP cubes (SQL Server Analysis Services)?

I'm going to use a single table to aggregate historical data about our (very big) virtual infrastructure. The table will be composed of 15 to 30 fields, and I esitmate from 500 to 1000 records a day. ...
1
vote
2answers
256 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
2k views

Cube Design - Bridge Tables for Many To Many mapping with additional column

Am making a cube in SQL Server Analysis Services 2005 and have a question about many to many relationships. I have a many to many relationship between two entities that contains an additional ...
3
votes
2answers
4k views

View MDX query generated while browsing a cube

In Sql Server Management Studio once I browse a cube I can drop column fields, row fields and filter fields. This displays the required data. I want to know if there is a way to view the MDX query ...
1
vote
2answers
1k views

Calculated Measure using dimension

I am trying to build a calculated measure in SSAS that incorporates a dimension parameter. I have two facts: Members & Orders and one Dimension: Date. Members represents all the unique members on ...
0
votes
1answer
166 views

How to create following cube?

For example........... Database Table: BatchID BatchName Chemical Value -------------------------------------------------------- BI-1 BN-1 CH-1 1 ...
2
votes
3answers
1k views

c# cube / multidimensional dataset

I'm working on a problem where i need to process multi dimensional data in memory using C#. My requirement resemble OLAP cubes but are not as complex. for example i don't need calculations or ...
1
vote
1answer
402 views

Can 2 Cubes in a Data Warehouse be directly compared against each other?

Is there a way to compare all information (aggregates, down to the detail level) between two OLAP cubes? For example, say I wanted to compare one cube created to work with sql server 2000 to that same ...
12
votes
1answer
2k views

MDX Calculated Member CrossJoin question

I have an MDX query with the following calculated member: with member [Measures].[BBOX] as Count( Filter( CrossJoin([Dim Response].[Response ID].Children, [Dim Question].[Question ...
3
votes
3answers
569 views

book suggestions to learn about olap

I want to learn about olap and 'cubes', I have a very limited understanding and looking for recommendations on good beginner books on these sort of topics. I use sql server primarily so if the book ...
1
vote
1answer
900 views

get output of last Process on SSAS cube

I have processed a SSAS cube. After it was done processing, I hit the close button - and then realized that I should have saved the output. I think SSAS stores the processing log as a text or XML ...

1 2