Cached Lookup and an Uncached Lookup

What is the difference between using a cached lookup and an uncached lookup?

Questions by rajneeshpandey83

Showing Answers 1 - 3 of 3 Answers

vivek1708

  • May 7th, 2008
 

while using a cache lookup, a pre-fetch is performed on the lookup table, before the mapping is executed.

Uncached lookup is like any normal look up.

  Was this answer useful?  Yes

ggazulas

  • May 27th, 2008
 

For a cached lookup the entire rows (lookup table) will be put in the buffer, and compare these rows with the incomming rows.

where as uncached lookup, for every input row the lookup will query the lookup table and get the rows.

gaurav2485

  • Jan 8th, 2009
 

In Cache Lookup a cache will be created of that Lookup table and IS query once for mapping rows for Uncache lookup No cache will be build and IS query for each Mapping rows.
So for performance Go for Cache lookup if Lookup table size< Mapping rows
Go for UnCache lookup if Lookup table size> Mapping rows

  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