Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

33
votes
7answers
12k views

Star-Schema Design

Is a Star-Schema design essential to a data warehouse? Or can you do data warehousing with another design pattern?
3
votes
3answers
114 views

Why NULL values are mapped as 0 in Fact tables?

What is the reason that in measure fields in fact tables (dimensionally modeled data warehouses) NULL values are usually mapped as 0?
3
votes
4answers
362 views

Star-schema: Separate dimensions for clients and non-clients or shared dimension for attendants?

I'm new to modeling star schemas, fresh from reading the Data Warehouse Toolkit. I have a business process that has clients and non-clients calling into conference calls with some of our employees. ...
2
votes
2answers
79 views

Creating Data Warehouse

I am creating a data warehouse by using a star schema. I successfully build all the dimension tables, but I'm kind of stuck at the fact table. I am in a need to make a Sales table as Fact table. It ...
2
votes
3answers
301 views

What are the types of dimension tables in star schema design?

When reading about star schema design I have seen that many people uses various names for different types of dimension tables. Please list the names and a small description of each type. If any list ...
2
votes
2answers
92 views

Is it possible to set the foreign key of a reference directly in NHibernate?

Got a project that collects data as XML files from a particular system (these come in as web requests), converts it to an entity model, and stuffs it in a database for reporting. The project uses ...
1
vote
1answer
50 views

Dimensional Modeling Doubts

I have a few questions regarding dimensional modeling: While designing dimensional model from existing OLTP system, do we use the same table structures in OLTP in dimension model? For example I have ...
1
vote
2answers
95 views

Date Dimension Generator for MySQL

I'm designing a data warehouse and I need a tool that can generate the Date Dimension. I'm using MySQL 5.x. Thanks
1
vote
0answers
40 views

How to report on sparse areas of sparse fact table

A source system tracks student attendance for a school district by reporting absence events. Attendance on any particular day can be determined by examining three datasets: school calendar, student ...
1
vote
2answers
375 views

How to map entities to dimension table which includes a hierarchy?

Consider the following hierarchy: Department -> Category -> Product (Each department contains multiple categories, each of which contains multiple products.) Using the Kimball approach to ...
1
vote
1answer
84 views

What's a good screencast for an introduction to dimensional models and SQL Server Analysis Services?

My team is getting ready to start using SQL Server Analysis Services on our project but none of us have a lot of experience with it. What's a good screencast we can watch to get us started?
1
vote
3answers
257 views

Which book do would you recommend for learning the basics of DataWarehousing

What is the best introductory book on Datawarehousing/Business Intelligence?
0
votes
0answers
15 views

Dimensional Modeling

I am new to dimensional modeling and trying to design a model based on the existing OLTP system. Below are the links to ERDs for existing OLTP system and a dimension model that I have developed. Can ...
0
votes
0answers
32 views

Using time dimension in OWB

I started to work with Oracle Warehouse Builder a few days ago, and I want to use some of the dates in a source table as a dimension. I generated the time dimension with the wizard, but there is no ...
0
votes
1answer
50 views

Correctly aggregate values from a one to many relationship in SSAS

So I have a dimensional database for shipments: A shipment contains many packages. A package contains many charges. Because this is dimensional and the charges are the data I'm most interested in, ...
0
votes
1answer
88 views

Separate and independent counts from the same accumulating fact table

So, I have a Sales Fact table, that is based on the transaction lifecycle model (or accumulating fact snapshot table), with very many different date key columns, (like sales date, refunded date, etc). ...
0
votes
1answer
60 views

Dimensional modelling few questions

I am getting familiar with Dimensional model, so started looking at health claims process. I am trying to acheive the following: 1) ability to report claims by patient by speciality and service ...
0
votes
1answer
30 views

Should an aggregate data item have the same name as a detail data item?

Consider the following SQL: select dimension, sum(fact) as fact from t group by dimension; Here, I have given the aggregated fact the same name as the granular, un-aggregated fact. Is this ...
0
votes
1answer
81 views

Analysis Services Attribute Heirarcy and Attribute Relationships

Is it possible to have a attribute heirarchy where the parent doesn't always have children? If so, how is this achieved in SQL server Analysis Services?
0
votes
2answers
226 views

How do I dimensionally model this relationship in a Kimball-style data warehouse?

So I have two dimensions in my data warehouse: dim_machine ------------- machine_key machine_name machine_type dim_tool ------------ tool_key tool_name machine_type What I want to make sure of is ...
0
votes
0answers
115 views

Two or more similar counts on fact table in dimensional modelling

I have designed a fact table that stores the facts for a specific date dimension and an action type such as create, update or cancelled. The facts can be create and cancelled only once, but update ...
0
votes
2answers
2k views

Reporting Queries: Best Way to Join Multiple Fact Tables?

I'm working on a reporting system that allows the user to arbitrarily query a set of fact tables, constraining on multiple dimension tables for each fact table. I've written a query-builder class that ...