ORA-29339: tablespace block size string does not match configured block sizes ORACLE 报错 故障修复 远程处理

文档解释

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

Cause: The block size of the tablespace to be plugged in or created does not match the block sizes configured in the database.

Action: Configure the appropriate cache for the block size of this tablespace using one of the various (db_2k_cache_size, db_4k_cache_size, db_8k_cache_size, db_16k_cache_size, db_32K_cache_size) parameters.

这个错误表明指定表空间的块大小(BLOCK SIZE)与数据库实例中正确配置的块大小(BLOCK SIZE)不匹配。

官方解释

ORA-29339表示指定的表空间块大小不匹配配置的块大小。

常见案例

例如,当安装Oracle数据库并创建数据库时,如果指定了不同的表空间块大小,则可能会出现此错误。

一般处理方法及步骤

可以删除表空间,然后根据正确的块大小重新创建它们。要执行此操作,请执行以下操作:

1. 使用SQL*Plus登录到Oracle数据库中。

2. 将表空间状态更改为只读:ALTER TABLESPACE tsname READ ONLY;

3. 删除此表空间:DROP TABLESPACE tsname INCLUDING CONTENTS AND DATAFILES;

4. 创建新的表空间:CREATE TABLESPACE tsname DATAFILE ‘filename’ SIZE 10M BLOCKSIZE 8K;

5. 确保正确的块大小设置: DB_BLOCK_SIZE = 8K;

6. 用ALTER TABLESPACE tsname READ WRITE;将表空间恢复为可写状态。


数据运维技术 » ORA-29339: tablespace block size string does not match configured block sizes ORACLE 报错 故障修复 远程处理