> I can't seem to set a block based area in a bufferpool that is self
> tuning.
create bufferpool bp
size 100000 automatic
numblockpages 1000
pagesize 4096
> I can't set a large initial size for the bufferpool area either. When
> I set a size and recycle the database, the
> initial size defaults back to 1000 16k when using self tuning.
alter bufferpool yourbp size 100000 automatic numblockpages 1000
Keep in mind, DB2 may reduce the size of the bufferpool if it doesn't
see demand for it.
> Isn't it possible to allocate a larger initial bufferpool area, and to
> use block-based bufferpools when using self tuning memory?
Yes. But as I said, the number of block pages is fixed when the
bufferpool is allocated. So, while STMM may grow (and shrink) the
size of the page-based area of the bufferpool, the block-based
area will remain fixed.