In-memory Cache Vs Pageable Cache

Hi All,

Could anyone provide the info that when will we use In-memory Cache and Pageable Cache?

I am using SQL tranformation in a data flows which will bring huge data.

Which one is best to use in these two options. I am using 3.1.

Thanks in advance.


kiwi (BOB member since 2009-06-17)

This post should might with your question:

http://wiki.scn.sap.com/wiki/display/EIM/Caching+in+DI

Depending on the size of the data, an option might be checking the “collect statistics for monitoring” or “collect statistics for optimization” buttons at time of execution.

also briefly discussed here:

~ Search is your friend.


ww55d (BOB member since 2011-06-14)

The SQL transform shouldn’t cause huge memory issues. The SELECT statement within the transform is completely pushed down to the database and the result set is returned only 1,000 rows (by default) at a time. Now, what you do with the result set AFTER the transform is up to you and that’s where you can run into memory issues. If you route the data into a Query transform that performs a GROUP BY, ORDER BY or DISTINCT then the entire result set will have to be accumulated in memory.


eganjp :us: (BOB member since 2007-09-12)