ORA-03236: max # extents (string) reached in index string.string subpartition string
Cause: An index subpartition tried to extend past maxextents
Action: If maxextents is less than the system max, raise it. Otherwise, you must recreate with larger initial, next or pctincrease params.
ORA-03236:在索引子分区中已达到最大扩展。
ORA-03236: 该错误表明,您对一个表或索引的子分区执行了一个操作,该操作尝试使元素的扩展超过容量约定的最大值。
这个错误一般发生在尝试创建索引或子分区时,系统会检查给定索引/子分区是否具有足够的空间去扩展,如果不够,则会报错。
1.如果表空间对象本身具有足够的空间,则使用ALTER TABLE 命令来扩展其分区。
2.如果没有足够的空间,则可以使用ALTER DATABASE DATAFILE RESIZE命令来更改数据文件的大小。
3.然后使用ALTER TABLE重新扩展该分区。
4.使用ALTER INDEX命令来增加其最大扩展数量。
本文标签:string ORA-03236 max extents reached in index string.string subpartition
原文链接:
版权说明: 本文由作者上传,本站仅提供存储服务,转载请注明原文链接