DBA_2PC_PENDING中的分散式鎖-解鎖

perfychi發表於2012-12-31
 執行shell指令碼後,會生成 roll.sql檔案。
只需要執行roll.sql就會解除dba_2pc_pending 中的分散式鎖。

注意:根據情況決定shell指令碼中是否需要where 條件,比如過濾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;

 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/27042095/viewspace-751952/,如需轉載,請註明出處,否則將追究法律責任。

相關文章