322 DB2 UDB V8 and WebSphere V5 Performance Tuning and Operations Guide
3. Select the desired page size from the WebSphere Application Server’s
Session Manager (DB2 row size).
4. Type in the new table space name in the WebSphere Application Server’s
Session Manager (Table space name).
5. If the SESSIONS table already exists, drop it from the DB2 database:
DB2 connect to session
DB2 drop table sessions
6. Create a new DB2 buffer pool and tablespace, specifying the same page size
(8 KB, 16 KB or 32 KB) for both, and assign the new buffer pool to this
tablespace. The following are simple steps for creating an 8 KB page:
DB2 connect to session
DB2 CREATE BUFFERPOOL sessionBP SIZE 1000 PAGESIZE 8K
DB2 connect reset
DB2 connect to session
DB2 CREATE TABL ...