Fan trap and chasm trap - Database

前端 未结 3 656
一向
一向 2021-02-05 18:08

Can anyone tell me what is chasm trap? Perhaps fan trap too as I\'m not too clear. Also, please provide easy to understand examples (via Chen notations).

My understa

3条回答
  •  不要未来只要你来
    2021-02-05 18:18

    In simple word, for both the cases (FAN & CHASM) it will produce more line(result sets) than actual. How to identify

    • FAN -> 1-N-N means table relation from one -> many -> many
    • CHASM -> N-1-N means one row table to two or more table many relation
    • LOOP -> join all tables and when make loop like circle (In this case we will lose some rows absolutely)

    Nothing to identify but when you create Universe than we have to keep our eyes open, if you see out of these situation while developing Universe than there will be a problem always. So rectify by applying aliases, context.

    Once all problems solved at Universe level than we are good to go for reporting. By practice you will have excellent knowledge.

提交回复
热议问题