運(yùn)行shell腳本后,會(huì)生成 roll.sql文件。
只需要運(yùn)行roll.sql就會(huì)解除dba_2pc_pending 中的分布式鎖。
注意:根據(jù)情況決定shell腳本中是否需要where 條件,比如過(guò)濾status 是prepare的,還是其他的,還是全部的。
----------------------shell腳本-------------------------
#!/bin/bash
. /home/oracle/.profile
sqlplus -S / as sysdba < roll.sql
set heading off pagesize 0 echo off linesize 200 feedback off trimspool on
select 'rollback force ''' || LOCAL_TRAN_ID || ''';' || chr(10) ||
'execute DBMS_TRANSACTION.PURGE_LOST_DB_ENTRY(''' || LOCAL_TRAN_ID
|| ''');' || chr(10) || 'commit;' from DBA_2PC_PENDING;
exit;
EOF
------------------------上述sh生成的roll.sql文件格式-----------------------
rollback force '1506.7.4851';
execute DBMS_TRANSACTION.PURGE_LOST_DB_ENTRY('1506.7.4851');
commit;
rollback force '84.4.6215898';
execute DBMS_TRANSACTION.PURGE_LOST_DB_ENTRY('84.4.6215898');
commit;
當(dāng)前題目:DBA_2PC_PENDING中的分布式鎖-解鎖
當(dāng)前路徑:
http://weahome.cn/article/jjsjig.html