這篇文章主要介紹“Oracle下Truncate表的恢復(fù)”,在日常操作中,相信很多人在Oracle下Truncate表的恢復(fù)問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”O(jiān)racle下Truncate表的恢復(fù)”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
網(wǎng)站設(shè)計、成都網(wǎng)站制作介紹好的網(wǎng)站是理念、設(shè)計和技術(shù)的結(jié)合。創(chuàng)新互聯(lián)建站擁有的網(wǎng)站設(shè)計理念、多方位的設(shè)計風(fēng)格、經(jīng)驗豐富的設(shè)計團隊。提供PC端+手機端網(wǎng)站建設(shè),用營銷思維進(jìn)行網(wǎng)站設(shè)計、采用先進(jìn)技術(shù)開源代碼、注重用戶體驗與SEO基礎(chǔ),將技術(shù)與創(chuàng)意整合到網(wǎng)站之中,以契合客戶的方式做到創(chuàng)意性的視覺化效果。
Oracle Truncate表恢復(fù)(ODU)
從3.0.7版本開始,恢復(fù)Truncate表更方便,只需要執(zhí)行下面的步驟:
· (1)OFFLINE表所在的表空間
· (2)生成數(shù)據(jù)字典:unload dict
· (3)掃描數(shù)據(jù):scan extent
· (4)恢復(fù)表: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ù)
五:恢復(fù)表
自動生成以下三個文件
六:通過sqlldr加載數(shù)據(jù)到數(shù)據(jù)庫
七:驗證數(shù)據(jù)
select count(*) from tt1; ---86155
select * from tt1;
到此,關(guān)于“Oracle下Truncate表的恢復(fù)”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>
當(dāng)前文章:Oracle下Truncate表的恢復(fù)
新聞來源:http://weahome.cn/article/gpisgp.html