我使用alter table disable table lock 子句错误地禁用了对表的锁定。现在我想启用它的锁定,因为我想使用以下语句更改表名:
SQL> alter table account.acctbk_payment_seq 启用表锁;alter table account.acctbk_payment_seq enable table lock * ERROR at line 1: ORA-00054: resource busy and acquire with NOWAIT specified or timeout expired
有什么理想吗?
谢谢您的回复。ora 1120 例如:
create table scott.t8 (id number);
alter table scott.t8 disable table lock;
alter table scott.t8 enable table lock;
ORA-00054: 资源繁忙并使用指定的 NOWAIT 获取或超时已过期