in which situations do u go for starflake schema ?

Answers were Sorted based on User's Feedback



in which situations do u go for starflake schema ?..

Answer / nagaraju bhatraju

Star Schemas

The star schema is the simplest data warehouse schema. It
is called a star schema because the diagram resembles a
star, with points radiating from a center. The center of
the star consists of one or more fact tables and the points
of the star are the dimension tables
Star schema contains the dimesion tables mapped around one
or more fact tables.
It is a denormalised model.
No need to use complicated joins.
Queries results fastly.
Snowflake schema
It is the normalised form of Star schema.
contains indepth joins ,bcas the tbales r splitted in to
many pieces.We can easily do modification directly in the
tables.
We hav to use comlicated joins ,since we hav more tables .
There will be some delay in processing the Query .
1.Star Schema contains denormalized Dimensions. Snowflake
contains one or
more Normalized Dimensions.
2. Snowflake Schema give Less performance b'cos, giving
single result it
needs more joins. that is performance speed less in
Snowflake.

The snowflake schema is a variation of the star schema used
in a data warehouse.

The snowflake schema (sometimes callled snowflake join
schema) is a more complex schema than the star schema
because the tables which describe the dimensions are
normalized.

Flips of "snowflaking"



- In a data warehouse, the fact table in which data values
(and its associated indexes) are stored, is typically
responsible for 90% or more of the storage requirements, so
the benefit here is normally insignificant.

- Normalization of the dimension tables ("snowflaking") can
impair the performance of a data warehouse. Whereas
conventional databases can be tuned to match the regular
pattern of usage, such patterns rarely exist in a data
warehouse. Snowflaking will increase the time taken to
perform a query, and the design goals of many data
warehouse projects is to minimize these response times.


Benefits of "snowflaking"



- If a dimension is very sparse (i.e. most of the possible
values for the dimension have no data) and/or a dimension
has a very long list of attributes which may be used in a
query, the dimension table may occupy a significant
proportion of the database and snowflaking may be
appropriate.



- A multidimensional view is sometimes added to an existing
transactional database to aid reporting. In this case, the
tables which describe the dimensions will already exist and
will typically be normalised. A snowflake schema will hence
be easier to implement.

- A snowflake schema can sometimes reflect the way in which
users think about data. Users may prefer to generate
queries using a star schema in some cases, although this
may or may not be reflected in the underlying organisation
of the database.

- Some users may wish to submit queries to the database
which, using conventional multidimensional reporting tools,
cannot be expressed within a simple star schema. This is
particularly common in data mining of customer databases,
where a common requirement is to locate common factors
between customers who bought products meeting complex
criteria. Some snowflaking would typically be required to
permit simple query tools such as Cognos Powerplay to form
such a query, especially if provision for these forms of
query weren't anticpated when the data warehouse was first
designed.

In practice, many data warehouses will normalize some
dimensions and not others, and hence use a combination of
snowflake and classic star schema.

Is This Answer Correct ?    11 Yes 1 No

in which situations do u go for starflake schema ?..

Answer / venugopal

mainly in real time ...when we want to use existing data
warehousing as source we will go for snow flake schema

Is This Answer Correct ?    7 Yes 2 No

in which situations do u go for starflake schema ?..

Answer / prabakaran

when we have single or multiple facts and not bothered
about query performance.

When we dont have disk storage limitations

Is This Answer Correct ?    6 Yes 3 No

in which situations do u go for starflake schema ?..

Answer / vidyanand

Mostly preferable is Star schema where query performance
will be high comparing to snowflake Schema.

Snowflake schema is used only where performance issue will
not come into matter.

So, better to use star schema rather than snowflake schema.

Is This Answer Correct ?    2 Yes 0 No

in which situations do u go for starflake schema ?..

Answer / r.lakshmi

to design a DW, starflake schema is an effective method to
process the business instead of queries. provides speedy
retrival of information than snowflake schema

Is This Answer Correct ?    1 Yes 0 No

in which situations do u go for starflake schema ?..

Answer / padmavathi

When we bother about query performance we will go for
starschema modelling because in this modelling data
redundancy will be there while writing queries to retrive
data need not use more join conditions.

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More Informatica Interview Questions

what is diffrence b/w joner and union transfermation

6 Answers  


What are the types of schemas we have in data warehouse and what are the difference between them?

0 Answers  


SOURCE NAME SAL GANGA 30000 RAJU 20000 PAVAN 25000 TARGET NAME SAL MAXSAL GANGA 30000 30000 RAJU 20000 30000 PAVAN 25000 30000 in mapping level how to achive that

5 Answers   DELL,


i have two tables,table 1 having 2 columns and 3 rows,table2 having 3 columns and 2 rows.what is the output if i do left outerjoin,full outer join,right outer join?

2 Answers   IBM, Polaris,


Can one use mapping parameter or variables created in one mapping into any other reusable transformation?

0 Answers  






how to convert 101 raja 101 raja sekar reddy 101 sekar----------> 101 reddy

2 Answers  


What is an unconnected transformation?

0 Answers   Informatica,


How can you define user defied event?

0 Answers  


What is Code Page Compatibility?

1 Answers  


we have three columns and two rows. col1 col2 col3 a b c want to change into 2 columns and 3 rows ,how? col1 a col2 b col3 c which transformation u'll use and how?

3 Answers   Cognizant,


What is exact use of 'Online' and 'Offline' server connect Options while defining Work flow in Work flow ?

1 Answers  


i have 50500 records in my source.if wf run for the first time it will load 1000 records into 1 tgt,if runs second time it will load to another tgt.targets are FF and it is need to be created dynamically.how many tgt will be created and how?

1 Answers   HCL,


Categories