您好,登錄后才能下訂單哦!
這篇文章主要介紹“Oracle下Truncate表的恢復”,在日常操作中,相信很多人在Oracle下Truncate表的恢復問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”O(jiān)racle下Truncate表的恢復”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
Oracle Truncate表恢復(ODU)
從3.0.7版本開始,恢復Truncate表更方便,只需要執(zhí)行下面的步驟:
· (1)OFFLINE表所在的表空間
· (2)生成數(shù)據(jù)字典:unload dict
· (3)掃描數(shù)據(jù):scan extent
· (4)恢復表:unload table username.tablename object auto
create table tt1 as select * from dba_objects;
create table tt2 as select * from tt1;
select * from dba_objects where object_name='TT1'; ---OBJECT_ID 87295 ---DATA_OBJECT_ID 87295
---object_id: Dictionary object number of the object.
---Data_object_id: Dictionary object number of the segment that contains the object.
truncate table tt1;
select *from tt1;
一:OFFLINE表所在的表空間
select * from dba_objects where object_name='TT1'; ---OBJECT_ID 87290 ---DATA_OBJECT_ID 87297
select tablespace_name from user_tables where table_name='T1'; ---USERS
alter tablespace USERS offline;
alter system checkpoint;
二:ODU 版本3.0.9
三:生成數(shù)據(jù)字典
四:掃描數(shù)據(jù)
五:恢復表
自動生成以下三個文件
六:通過sqlldr加載數(shù)據(jù)到數(shù)據(jù)庫
七:驗證數(shù)據(jù)
select count(*) from tt1; ---86155
select * from tt1;
到此,關于“Oracle下Truncate表的恢復”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續(xù)學習更多相關知識,請繼續(xù)關注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。