ORA-14139: table string.string is already in read-only mode
Cause: an attempt was made to set a read-only table in read-only mode
Action: this DDL can only be executed on a read/write table
ORA-14139: 表string. string已处于只读模式
ORA-14139意味着您正在尝试更改表string.string,但它处于只读模式。
1、检查实例和数据库中所有只读表是否处于活动状态。
2、使用ALTER TABLE语句将只读表设置为可写模式。
3、再次尝试DML操作,如果错误仍可能会回到2,以确保所有只读表都可以更新。