Header Ads Widget

ORA-29339: tablespace block size 16384 does not match configured block sizes

when i was performing OTM post installation step as creating tablespace for OTM use. it provides create_gc*tablespace.sql to create all tablespace for OTM.

I was received error ORA-29339 : Tablespace block size 16384 does not match configured block sizes.

In order to create tablespace, you will need to change buffer size for these block by setting initialization parameter DB_16K_CACHE_SIZE and this parameter can be changed online.


alter system set DB_16k_CACHE_SIZE = 20M scope=both;

my issue get resolved now.