The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
8 views

SSAS parent-child table in snowflake schema

Hi we are working with effective dated department hierarchies. And are trying to ensure that upon selection of time the proper hierarchy is then forced to be selected. Attached is an image of the ...
0
votes
1answer
117 views

Normalizing Time Series Data

I'm creating a database to store a lot of events. There will be a lot of them and they will each have an associated time that is precise to the second. As an example, something like this: Event ----- ...
2
votes
1answer
489 views

Star vs Snowflake schema in data warehousing?

Currently, I've been involved in an warehouse based intelligent transaction analysis banking system featuring customer churn behavior, fraud detection & CRM analysis. We've been using Oracle as ...
2
votes
1answer
331 views

snowflake is better than indexing?

Here is the problem, I have a sales information table which contains sales information, which has columns like (Primary Key ID, Product Name, Product ID, Store Name, Store ID, Sales Date). I want to ...
0
votes
2answers
227 views

Koch snowflake implementation in python using pygame

I would like to implement Koch Koch snow flake using pygame. I am working with the following series of images from http://en.wikipedia.org/wiki/File:KochFlake.svg My algorithm is this Draw a ...
3
votes
2answers
145 views

Data Warehouse: Working with accumulated data

Our data warehouse uses accumulated data (and there is no way to invert the accumulation) from a data source to create a snowflake schema. A requirement we have to cope with is that our schema must be ...
0
votes
1answer
176 views

How can i write a dimension with snow flake schema ? . Details below

There are three tables - 1) Student - My fact Table (References Addresses with FK ADDRESS_ID 2) Addresses - This table Contains FK COUNTRY_ID references COUNTRY 3) Country - this has a NAME COLUMN ...
0
votes
2answers
63 views

Warehouse - snowflaking

Sales_fact: Product_ID (FK) Price Dim_Product: Product_ID Product_Key Description Problem I am facing with is what to do in case when I have products which can be in multiple categories. Should I ...
3
votes
1answer
638 views

Is a snowflake schema better than a star schema for data mining?

I know the basic difference between a star schema and a snowflake schema-a snowflake schema breaks down dimension tables into multiple tables in order to normalize them, a star schema has only one ...
0
votes
2answers
639 views

Exist a sample or template database for BI about sales/inventory?

I will start a reporting tool for some local ERPs about sales, invoices, orders, customers, inventory, etc. I wonder if exist a sample schema appropriated for this case (in star or snowflake form) so ...
1
vote
8answers
1k views

Reporting tool for OLAP, *not* OLTP!

I'm looking for a control that I can put on top of an already existing OLAP star schema to allow the user to define their own "queries" and generate reports. Right now I have some predefined reports ...