GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Interview Questions  >  Data Warehousing  >  Business Objects

 Print  |  
Question:  Shortcut Joins

Answer: What is the use of a shortcut joins and explain with realtime usage


April 04, 2008 14:22:43 #1
 ganesh.hbad   Member Since: April 2008    Total Comments: 2 

RE: Shortcut Joins
 

short cut joins are used to improve the query performance at universe level.
Suppose if we have 4 tables A,B,C and D

A--->B---->C---->D and  there is a chance to link A--->D  but we should not link (causes loop) and we need data from the tables A and D then it will get the data in the path A--->B---->C---->D , it consumes lot of time and resources.

In this case instead of linking A---->D using normal join we should link A and D by using short cut join and this will not create any loop and get the data in the path 
 A--->D, it consumes less time and resources.

     

 

Back To Question