Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Which is good in performance wise between join and link table. In my case I join 4 table with multiple join condition but having some performance issue. Please suggest me i will go for link table or not. if i will go for link table then need to create 3 linktable.
Example: let assume I have 4 table A,B,C,D.
A and B having some matching field
B and C having some matching field
C and D Having some matching field
There are no matching field between A and C , A and D, B and D
Have a look here: Concatenate vs Link Table
Concatenate might be a better choice based on how many fields are in common between tables.
if data is more create a view in Database and use it
use join and link table.
for your condition you need to use 3 joins or 3 link tables instead of that use both then it will increase performance else use keep join
instead of using join use keep join it will increase performance
OK but I need outer join between these table . I used join but some performance issue happens in production.
So need to work on performance tune. So Please suggest on it.
if you have data join will impact on performance instead of that use keep join it will not impact on performance but this function will show these two tables separately
if you have huge data in your tables join will impact on performance instead of that use keep join it will not impact on performance but this function will show these two tables separately
Thanks for reply. In my case 6-7 column are matched and in join condition I need to mention all these column. after using keep I will face synthetic key. I can use join else link table. My question is which is faster between join and link table. We have huge data in production. But i don't have access to production so not able to check.