Quote:
Originally posted by sangeethk
Hello,
I have created a table in Db2, which has a column of type Clob,size 10MB.
My front end is Java.
I'm trying to insert a large string into this column.
But only part of the string is stored.If i'm write it's size may be 4000 bytes.
I came to know in one of the forum that, buffer pool size should be increased.
Please anyone tell me whether my problem is related with buffer pool.
|
I don't think your problem has anything to do with bufferpool size.
However, to check your bufferpool sizes you can use the following statement:
select bpname, npages*pagesize as size_bytes from syscat.bufferpools
To change the size of a bufferpool use "ALTER BUFFERPOOL" statement.