-
as seen on Oracle Blogs
- Search for 'Oracle Blogs'
Az Oracle OpenWord-ön, 2009. október 12-én jelentette be az Oracle, hogy elkészült a Simba Technologies MDX eszköze az Oracle OLAP eléréséhez:
Oracle and Simba Technologies Introduce MDX Provider for Oracle® OLAP.
Az MDX Provider for Oracle® OLAP eszközzel közvetlenül az Excel felületrol lehet elérni…
>>> More
-
as seen on SQL Blog
- Search for 'SQL Blog'
While surfing CodePlex I’ve come across a very interesting tool for all BI Developers who misses a decent OLAP client where to write, run & test MDX queries http://ranetuilibraryolap.codeplex.com/ I’ve not tested it yet, but I’ll surely do this week and I’ll post my impressions ASAP. The first…
>>> More
-
as seen on SQL Blog
- Search for 'SQL Blog'
While surfing CodePlex I’ve come across a very interesting tool for all BI Developers who misses a decent OLAP client where to write, run & test MDX queries http://ranetuilibraryolap.codeplex.com/ I’ve not tested it yet, but I’ll surely do this week and I’ll post my impressions ASAP. The first…
>>> More
-
as seen on Oracle Blogs
- Search for 'Oracle Blogs'
Oracle Warehouse Builder was the first ETL product to provide a single integrated and complete environment for managing enterprise data warehouse solutions that also incorporate multi-dimensional schemas. The OWB 11gR2 release provides Oracle OLAP 11g deployment for multi-dimensional models (in addition…
>>> More
-
as seen on SQL Blogcasts
- Search for 'SQL Blogcasts'
At the forthcoming SQLBits conference, I will be presenting a session on how to dynamically build an OLAP data mart on-the-fly. This blog entry is intended to clarify exactly what I mean by an OLAP data mart, why you may need to build them on-the-fly and finally outline the steps needed to build…
>>> More
-
as seen on Game Development
- Search for 'Game Development'
I'm getting started with GLSL with quartz composer.
I have a patch with a particle system in which each particle is mapped into a sphere with a blend value. With blend=0 particles are in random positions, blend=1 particles are in the sphere. The code is here:
vec3 sphere(vec2 domain)
{
vec3 range;
…
>>> More
-
as seen on Game Development
- Search for 'Game Development'
hi
i'm getting started with glsl with quartz composer.
i have a patch with a particle system in which each particle is mapped into a sphere with a blend value. with blend=0 particles are in random positions, blend=1 particles are in the sphere. the code is here:
vec3 sphere(vec2 domain)
{
…
>>> More
-
as seen on Game Development
- Search for 'Game Development'
When creating 2500 objects, I get a strange windows exception. It says the operation copmleted successfully at my constructor line. The program doesn't run or anything. I'm assuming it has something to do with memory. Each object has 32 indices and 8 vertices, so that 640,000 bytes or whatever vertices…
>>> More
-
as seen on Game Development
- Search for 'Game Development'
As my program stands I have a cube which I can control using keyboard input. I can make it move left, right, up, down, back, fourth along the axis only. I can also rotate the cube either left or right; all the translations and rotations are implemented using glm.
if (keys[VK_LEFT]) //move cube along…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hello!
I have made a subclass of NSObject that is meant to be the model of my application. The class has a few methods and on instance primitive array as such:
@interface Cube : NSObject {
int cubeState[5][2][2];
}
- (id)printContent;
@end
@implementation Cube
- (void)init {
if (self…
>>> More