处理步骤为

1、找到表ID

select * from dba_objects where object_name like 'TPT_RPWORPA1_QRY'

2、通过表ID查找正在使用的事务

select 'alter system kill session '''||SID||','||SERIAL#||''';' from V$session where SID in ( select sid from v$enqueue_lock t where t.type='TO' and id1='70989' )

3、逐条kill表事务

alter system kill session '343,7000';

相关文章:

  • 2022-12-23
  • 2021-07-03
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-23
  • 2021-11-18
  • 2021-09-16
猜你喜欢
  • 2022-03-05
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案