1. 目標說明
xbbed主要實現一鍵讀取asm數據塊到文件系統或更新文件系統數據塊到asm。 下載地址: http://www.sunline.cc/download/221215 歡迎關注公眾號交流溝通“xaoug”
2. Oracle sudo權限設置
--root用戶執行
grep 'oracle' /etc/sudoers
echo "oracle ALL=(ALL) NOPASSWD: ALL" >>/etc/sudoers
grep 'oracle' /etc/sudoers
su - oracle
sudo su - grid -c pwd
3. 測試表創建
drop table hsql.t1 purge;
create table hsql.t1(c1 char(10));
insert into hsql.t1 values('enmo');
commit;
alter system flush buffer_cache;
select dbms_rowid.rowid_object(rowid) object_id,
dbms_rowid.rowid_relative_fno(rowid) file_id,
dbms_rowid.rowid_block_number(rowid) block_id,
dbms_rowid.rowid_row_number(rowid) row_number,* from hsql.t1;
OBJECT_ID FILE_ID BLOCK_ID ROW_NUMBER C1
---------- ---------- ---------- ---------- ------------------------------
87925 4 182 0 enmo
4. cp asm block to os
[oracle@snyxdb1 x_recovery]$ sh x_reco.sh
--------------------------------------------------------------------------------
|**********************WELCOME: x_rec for Oracle*******************************|
|1). install_bbed: bbed install one key |
|2). xbbed: cp asm block to os block or reverse. |
|3). exit: quit the x_rec |
|*****************if you need any help contact my wechat: xidoublestar*********|
--------------------------------------------------------------------------------
pls,input operation name:xbbed
********************************WELCOM XBBED********************************
|method: |
|1) get dba a,b <-- cp file#: a,blk#: b from asm to /tmp/xbbed/a_b.dd |
|2) save dba a,b <-- cp /tmp/xbbed/a_b.dd to asm |
|3) exit |
****************************************************************************
xbbed>get dba 4,182
**********get dba 4,182**********
block_id_in_datafile: 182
file_number: 4
filesystem_filename: /tmp/xbbed/4_182.dd
asm_datafile_name: +OCR_VOTE/epmsn/datafile/users.259.1076411313
PL/SQL procedure successfully completed.
xbbed>
5. 使用bbed修改數據內容
[oracle@snyxdb1 bbed]$ cat listfile.txt
1 /tmp/xbbed/4_182.dd
[oracle@snyxdb1 bbed]$ sh l_bbed.sh
BBED: Release 2.0.0.0.0 - Limited Production on Mon Nov 1 10:27:13 2021
Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.
************* !!! For Oracle Internal Use only !!! ***************
BBED> set dba 1,1
DBA 0x00400001 (4194305 1,1)
BBED>
BBED> p *kdbr[0]
rowdata[0]
----------
ub1 rowdata[0] @8174 0x2c
BBED> x /rccc
rowdata[0] @8174
----------
flag@8174: 0x2c (KDRHFL, KDRHFF, KDRHFH)
lock@8175: 0x01
cols@8176: 1
col 0[10] @8177: enmo
BBED> d offset 8177 count 16
File: /tmp/xbbed/4_182.dd (1)
Block: 1 Offsets: 8177 to 8191 Dba:0x00400001
------------------------------------------------------------------------
0a656e6d 6f202020 20202001 065139
<32 bytes per line>
BBED> m /x 65 offset 8182
Warning: contents of previous BIFILE will be lost. Proceed? (Y/N) y
File: /tmp/xbbed/4_182.dd (1)
Block: 1 Offsets: 8182 to 8191 Dba:0x00400001
------------------------------------------------------------------------
65202020 20200106 5139
<32 bytes per line>
BBED> sum apply
Check value for File 1, Block 1:
current = 0x233d, required = 0x233d
BBED> d offset 8177 count 16
File: /tmp/xbbed/4_182.dd (1)
Block: 1 Offsets: 8177 to 8191 Dba:0x00400001
------------------------------------------------------------------------
0a656e6d 6f652020 20202001 065139
<32 bytes per line>
BBED> p *kdbr[0]
rowdata[0]
----------
ub1 rowdata[0] @8174 0x2c
BBED> x /rccc
rowdata[0] @8174
----------
flag@8174: 0x2c (KDRHFL, KDRHFF, KDRHFH)
lock@8175: 0x01
cols@8176: 1
col 0[10] @8177: enmoe
BBED>
5. cp os block to asm
xbbed>save dba 4,182 **********save dba 4,182********** file_with_patched_block: /tmp/xbbed/4_182.dd file_to_patch_in_ASM: +OCR_VOTE/epmsn/datafile/users.259.1076411313 v_offstart: 182 PL/SQL procedure successfully completed. xbbed>
6. 結果檢查
[oracle@snyxdb1 ~]$ sqlplus / as sysdba
SQL*Plus: Release 11.2.0.4.0 Production on Mon Nov 1 10:29:17 2021
Copyright (c) 1982, 2013, Oracle. All rights reserved.
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Partitioning, Automatic Storage Management, OLAP, Data Mining
and Real Application Testing options
SQL> alter system flush buffer_cache;
System altered.
SQL> select * from hsql.t1;
C1
------------------------------
enmoe
SQL>
7. 重置Oracle sudo權限設置
grep 'oracle' /etc/sudoers sed -ri 's/^oracle/#oracle/' /etc/sudoers grep 'oracle' /etc/sudoers su - oracle sudo su - grid -c pwd
歡迎關注公眾號交流溝通“xaoug”

最后修改時間:2021-11-08 15:31:10
「喜歡這篇文章,您的關注和贊賞是給作者最好的鼓勵」
關注作者
【版權聲明】本文為墨天輪用戶原創內容,轉載時必須標注文章的來源(墨天輪),文章鏈接,文章作者等基本信息,否則作者和墨天輪有權追究責任。如果您發現墨天輪中有涉嫌抄襲或者侵權的內容,歡迎發送郵件至:contact@modb.pro進行舉報,并提供相關證據,一經查實,墨天輪將立刻刪除相關內容。




