ORA-48936: The number of relations exceeds maximum number [string]

文档解释

ORA-48936: The number of relations exceeds maximum number [string]

Cause: Too many relations listed

Action: Reduce the number

官方解释

ORA-48936 是一种数据库表空间异常,当使用的表空间使用大小超过其允许的最大大小时,会抛出一个 ORA-48936 错误。

常见案例

当创建新的用户表时,用户的表空间大小超过其允许的最大大小,就会抛出ORA-48936。

一般处理方法及步骤

1.确认表空间是否超出允许的最大大小范围,如果确实超出限制,可以采取下列步骤进行处理;

2.首先将表空间容量增加;

3.重载(reload)表空间,将数据移动到新增加的表空间位置;

4.重新校验表空间;

5.最后使用ALTER TABLE语句更新表空间信息,重置max_rels_per_usr参数的值,检查是否恢复正常。

你可能感兴趣的