我的一个表 A 突然不能插入数据了,报错:unable to extend by 1092 in tablespace mytsp(表空间名),我的表空间是自己增长的。我的表存储属性是:
create table A
(
...
)
storage (
init 2 M
next 10 M
increase 0%
max extends unlimited
)
具体可能写的不正确,但是大意就是这样。
怎么办?
...全文
785打赏收藏
表不能扩展了,怎么办?
我的一个表 A 突然不能插入数据了,报错:unable to extend by 1092 in tablespace mytsp(表空间名),我的表空间是自己增长的。我的表存储属性是: create table A ( ... ) storage ( init 2 M next 10 M increase 0% max extends unlimited ) 具体可能写的不正确,但是大意就是这样。 怎么办?