ORA-01593: rollback segment optimal size (string blks) is smaller than the computed initial size (string blks) ORACLE 报错 故障修复 远程处理
文档解释
ORA-01593: rollback segment optimal size (string blks) is smaller than the computed initial size (string blks)
Cause: Specified OPTIMAL size is smaller than the cumulative size of the initial extents during create rollback segment.
Action: Specify a larger OPTIMAL size.
错误: ORA-01593:回滚段优化大小(字符串 blks)小于计算的初始大小(字符串 blks)。
官方解释
常见案例
1.如果MAXEXTENTS超过128,而在CREATE ROLLBACK SEGMENT语句中未指定TABLESPACE USING参数,即使RBS正在使用该表空间。
2.如果系统参数rollback_segments条目定义的回滚段超出了指定的表空间,它会引发错误消息ORA-01593。
正常处理方法及步骤
1.调整表空间参数MAXEXTENTS,以将其设置为128或更小的值。
2.使用USING参数重新创建回滚段,以确保最大扩展大小在MAXEXTENTS范围内。
3.如果已有回滚段,应使用ALTER ROLLBACK SEGMENT静态语句来重置回滚段参数。