溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Oracle下Truncate表的恢復

發(fā)布時間:2021-08-23 18:15:31 來源:億速云 閱讀:275 作者:chen 欄目:關系型數(shù)據(jù)庫

這篇文章主要介紹“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
Oracle下Truncate表的恢復

三:生成數(shù)據(jù)字典

Oracle下Truncate表的恢復

四:掃描數(shù)據(jù)

Oracle下Truncate表的恢復

五:恢復表

Oracle下Truncate表的恢復

自動生成以下三個文件

Oracle下Truncate表的恢復

六:通過sqlldr加載數(shù)據(jù)到數(shù)據(jù)庫

Oracle下Truncate表的恢復

Oracle下Truncate表的恢復

七:驗證數(shù)據(jù)

select count(*) from tt1;  ---86155

select * from tt1;

Oracle下Truncate表的恢復

到此,關于“Oracle下Truncate表的恢復”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續(xù)學習更多相關知識,請繼續(xù)關注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI