Quote:
Originally Posted by GregMalick
We just encountered a problem in using JPA to display some table information with a varchar(6000) field. Sorting causes the use of a TEMP storage table and IBMDEFAULTBP has the default 4096 pagesize. Obviously this causes a problem (SQL1585N)...
I'm considering increasing the size to 8K
|
Clearly, since you have a table with a 6K column, you must have a tablespace with the page size larger than 4K to contain it and, subsequently, a bufferpool with the same page size.
The only thing that you are missing is a system temporary tablespace with that page size. If you follow Marcus' approach of 32K you'll need also a bufferpool with that page size.
Also, you can't change a bufferpool page size; you can only drop and re-create the bufferpool, so "increasing the size to 8K" won't work.