Tagged Questions

33
votes
7answers
11k 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
1answer
216 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 ...
2
votes
2answers
69 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
189 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
1answer
86 views

Star schema modeling - many-to-many

I'm building a data warehouse based on NFL statistics for educational purposes as I learn this paradigm - I have the following modelling problem Players can play for different teams different years ...
1
vote
1answer
37 views

is it correct about dimension table and star schema?

is it correct dimensions of star schema also has foreign and primary key relationship ?Is it conceptually correct , please help as its confusion I am having in my Dateware implementation. If yes then ...
1
vote
2answers
325 views

General understanding of star schema design

So, I think I understood what to put in dimensions, what in the fact table, and how to achieve this. Now I got the problem, that I have this dimension 'product' and a dimension 'productProperties'. I ...
1
vote
1answer
66 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 ...
1
vote
2answers
267 views

star schema design - one column dimensions

I`m new to data warehousing, but I think my question can be relatively easy answered. I built a star schema, with a dimension table 'product'. This table has a column 'PropertyName' and a column ...
1
vote
4answers
212 views

How do I avoid complex joins in star schema?

My fact table holds a user score in a course he took. Some of the details of the course, which I have to show on the report, comes from more then one table (in the actual OLTP db). Do I create a none ...
1
vote
1answer
123 views

select all values from a dimension for which there are facts in all other dimensions

I've tried to simplify for the purposes of asking this question. Hopefully, this will be comprehensible. Basically, I have a fact table with a time dimension, another dimension, and a hierarchical ...
0
votes
0answers
19 views

features of Dataware housing via SQL server [closed]

do sql server provide any tools/functions which help us in making star scheme ,aggregates or similar ? I am using winform application to give layout for dwh users and sql server 2008 for db
0
votes
4answers
88 views

What is exactly a measure in star schema in data warehouse design?

Star schema consists of dimension and fact tables. Fact tables contain foreign keys for each dimension and in addition to that, it contains "measures". What exactly comprises of this measure ? Is it ...
0
votes
1answer
53 views

Star Schema Design Help

I'm stuck on how I would put together a star schema around my current web application (similar structure as stackoverflow). I have: Surveys have many Questions Questions have many Votes Questions ...
0
votes
2answers
803 views

Star schema [fact 1:n dimension]…how?

I am a newcomer to data warehouses and have what I hope is an easy question about building a star schema: If I have a fact table where a fact record naturally has a one-to-many relationship with a ...
0
votes
2answers
790 views

Insert into a star-schema

I've read a lot about star-schema's, about fact/deminsion tables, select statements to quickly report data, however the matter of data entry into a star-schema seems aloof to me. How does one ...