Quote:
|
Originally Posted by hariza
Yep I was aware of all this. Basically after I upgraded the instance to 64 bits what I was expecting is a change now that I'm able to address more memory even 32k is not too much when you have 40 gigs of RAM on a Database server. Also for instance a have a bunch of tables (around 5) with Clob/Varchar columns and those are use to create a template PDF documents. Imagine if I can fit most of this data into one bufferpool or at least the most accessed one. The performance would be much better I would've thought.
|
I am not sure what you are saying. The maximum page size of 32K is not affected by the 32/64 bit instance choice, and has nothing to do with amount of memory than can be addressed by DB2.
If your total row length will fit in a 32K page, then you would probably be better off using VARCHAR (instead of CLOB) or VARCHAR FOR BIT DATA (instead of BLOB), so that DB2 will make use of bufferpool cache for table pages.