Hi,
I created a database, connected to that and specified the table space to be 32k
Code:
CONNECT TO myDB;
CREATE BUFFERPOOL my_32k SIZE 250 PAGESIZE 32 K;
CREATE TABLESPACE my_32k PAGESIZE 32 K MANAGED BY SYSTEM USING ('my_32k') BUFFERPOOL my_32k ;
CREATE TEMPORARY TABLESPACE my_temp_32k PAGESIZE 32 K MANAGED BY SYSTEM USING ('my_temp_32k ') BUFFERPOOL my_32k;
CONNECT RESET;
If I have a table column with varchar more than 3000, the table is created with my_32k page size. However a table with all columns less than varchar 1000 , the page size corresponds to USERSPACE1.
How I can make all the tables to use the default table space of 32k i.e. my_32k
Thanks in advance.