What is a star schema? Why does one design this way?

Answers were Sorted based on User's Feedback



What is a star schema? Why does one design this way?..

Answer / nethaji

A Star schema consist of fact table surrounded by one or
more dimension tables,which represent a star like
structure.Primary key of dimension tables connect to fact
tables as foreign keys.Data is is denormalized manner.For
better query performance we would go for star schema.

Is This Answer Correct ?    10 Yes 0 No

What is a star schema? Why does one design this way?..

Answer / tanmay kumar meher

The star schema (sometimes referenced as star join schema)
is the simplest data warehouse schema, consisting of a
single "fact table" with a compound primary key, with one
segment for each "dimension" and with additional columns of
additive, numeric facts.
The star schema makes multi-dimensional database (MDDB)
functionality possible using a traditional relational
database. Because relational databases are the most common
data management system in organizations today, implementing
multi-dimensional views of data using a relational database
is very appealing. Even if you are using a specific MDDB
solution, its sources likely are relational databases.
Another reason for using star schema is its ease of
understanding. Fact tables in star schema are mostly in
third normal form (3NF), but dimensional tables are in de-
normalized second normal form (2NF). If you want to
normalize dimensional tables, they look like snowflakes
(see snowflake schema) and the same problems of relational
databases arise - you need complex queries and business
users cannot easily understand the meaning of data.
Although query performance may be improved by advanced DBMS
technology and hardware, highly normalized tables make
reporting difficult and applications complex.

Is This Answer Correct ?    5 Yes 0 No

What is a star schema? Why does one design this way?..

Answer / pratap gangula

STAR Schema is a design that has a collection of one fact table and many dimension tables. Fact tables have the foreign keys to all the dimension tables and also keeps the additive measures for analysis. Dimension tables have the information needed to describe the measures in the fact. Basically dimensions are entities with all the attributes in a denormalized form.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Data Warehouse General Interview Questions

Explain the importance of data warehouse?

0 Answers  


What is the difference between filter and lookup transformation?

0 Answers  


What is the difference between junk dimension and degenerated dimension?

0 Answers  


Can we take backup when the database is opened?

0 Answers  


What is the difference between snowflake and star schema?

0 Answers  






What is recovering sessions?

0 Answers  


How would you write a left join statement to return a result set of movie.title�s and director.name�s?

0 Answers  


Ist the schema that a data warehouse system can implements.

0 Answers  


Explain what is full load & incremental or refresh load?

0 Answers  


what are different ways of loading data to data warehouse using oracle?

1 Answers  


Explain difference between snow flake and star schema.

0 Answers  


What is a ETL/ How does Oracle support the ETL process?

1 Answers  


Categories