What is loop in frameworkmanager ?

Showing Answers 1 - 4 of 4 Answers

Guest

  • Jun 22nd, 2006
 

Loop: loop is a closed path (relation) that exists among 3 (or) more tables. For example, if we have '3' tables T1, T2, T3 then, a loop exists among these tables only when we create joins in the following fashion:

         Loop:          T1 ---> T2 ---> T3 ---> T1

To resolve the above problem, we have to create a shortcut (or) Alias to the Table T1.

         No Loop:      T1 ---> T2 ---> T3 ---> Alias (or) Shortcut of T1

Loop is a closed path that exists among '3' (or) more tables. for example, if we have '3' tables T1, T2, T3 then, loop will exists among these tables only when we create joins in the following fashion:

         Loop:      T1 ---> T2 ---> T3 ---> T1

To resolve the problem of loops, we have to create a shortcut (or) alias to one of the existed tables:

         No Loop:    T1 ---> T2 ---> T3 ---> Alias (or) Shortcut of T1

  Was this answer useful?  Yes

rkiranbedi

  • Mar 2nd, 2007
 

 Loop is a closed Path. it can be exist b/w fact &dimensions, to resolve these we have to use shortcuts

  Was this answer useful?  Yes

ASHOK1324

  • Apr 23rd, 2009
 

Loop: Loop is a closed path (relation) that exists among 3 (or) more tables. Loop gets created when "N" tables have "N" joins.

For example if we have '3' tables T1 T2 T3 then a loop exists among these tables like this.
Loop: T1 ---> T2 ---> T3 ---> T1

To resolve the above problem we have to delete unnecessary joins (or) create a shortcut[Alias] table for the selected query subject and create the last join with shortcut query subject.
No Loop: T1 ---> T2 ---> T3 ---> Alias (or) Shortcut of T3

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions