濮阳杆衣贸易有限公司

主頁(yè) > 知識(shí)庫(kù) > 最簡(jiǎn)單的Oracle數(shù)據(jù)恢復(fù) select as of使用方法

最簡(jiǎn)單的Oracle數(shù)據(jù)恢復(fù) select as of使用方法

熱門標(biāo)簽:車瑪仕極限運(yùn)動(dòng)場(chǎng)所地圖標(biāo)注 廣東營(yíng)銷智能外呼系統(tǒng)商家 N個(gè)你智能電銷機(jī)器人 電渠外呼系統(tǒng) 外呼電話系統(tǒng)用卡嗎 七日殺a19.5全地圖標(biāo)注 高德地圖標(biāo)注公司名字大全 騰訊地圖標(biāo)注要費(fèi)用嗎 地圖標(biāo)注怎么保存

You perform a Flashback Query by using a SELECT statementwith an AS OF clause.You use a flashback query to restrieve data as it existed at some time in the past.The query explicitly references a past time by menasof timestamp or SCN.It returns committed data that was current at that point intime.
通過(guò)執(zhí)行一個(gè)帶as of 子句的select語(yǔ)句進(jìn)行閃回查詢,可以閃回檢索過(guò)去某個(gè)時(shí)間存在的數(shù)據(jù),一個(gè)閃回查詢被用來(lái)重現(xiàn)過(guò)去存在過(guò)的數(shù)據(jù),這個(gè)查詢明確的引用了過(guò)去的一個(gè)時(shí)間段或SCN號(hào),閃回查詢返回的數(shù)據(jù)都是過(guò)去某時(shí)刻已經(jīng)提交的數(shù)據(jù)。

Potential uses of Flashback Query include:
可能使用到閃回查詢的地方:
⊙Recovering lost data or undoing incorrect,committed changes.For example,if you mistakenly delete or update rows,and then commit them,you can immediately undo the mistake.
恢復(fù)丟失的數(shù)據(jù)或撤銷已經(jīng)提交的錯(cuò)誤。例如如果你不小心刪除或更新了行,并且做了提交操作,你可以立刻撤銷這個(gè)錯(cuò)誤。
⊙Comparing current data with the corresponding data at some time in the past.For example,you might run a daily report that shows the change in data from yesterday.You can compare the individual rows of table data or find intersections or unions of sets of rows.
比較當(dāng)前數(shù)據(jù)和歷史數(shù)據(jù)的一致性。例如,你可能需要生成一份前一天數(shù)據(jù)更新的日?qǐng)?bào)告,你可以分別比較表的每一行或找到行的交集和并集。
⊙Checking the state of transactional data at a particular time.For example,you could verify the account balance of a certain day.
在某個(gè)特殊時(shí)間檢查事務(wù)型數(shù)據(jù)的狀態(tài)。例如,你可以在某一天驗(yàn)證賬戶收支。
⊙Simplifying the application design,by removing the need to store some kinds of temporal data.By using a Flashback Query, you can retrieve past data directly from the database.
移除某些因需求儲(chǔ)存的暫時(shí)數(shù)據(jù)以簡(jiǎn)化應(yīng)用設(shè)計(jì)。通過(guò)閃回查詢你可以從數(shù)據(jù)庫(kù)中直接獲取到過(guò)去的數(shù)據(jù)。
⊙Applying the packaged applications such as report generation tools to past data.
使用包裝應(yīng)用(例如報(bào)表生成工具)的歷史數(shù)據(jù)
⊙Providing self-service error correction for anapplication,thereby enabling users to undo and correct their errors.
為應(yīng)用提供自服務(wù)錯(cuò)誤更正,因此可以讓用戶撤銷或更正他們的錯(cuò)誤。
 
示例:
 
SQL> conn /as sysdba;
已連接。
SQL> set pagesize 200
SQL> select * from scott.dept;
 
    DEPTNO DNAME                        LOC
---------- ---------------------------- -------------------------
        10 ACCOUNTING                   NEW YORK
        20 RESEARCH                     DALLAS
        30 SALES                         CHICAGO
        40 OPERATIONS                   BOSTON
現(xiàn)在,我們來(lái)增加一條數(shù)據(jù),并提交:
 
SQL> insert into scott.dept values(50,'錯(cuò)誤數(shù)據(jù)','CHINA');
已創(chuàng)建 1 行。
 
SQL> select * from scott.dept;


    DEPTNO DNAME                        LOC
---------- ---------------------------- -------------------------
        10 ACCOUNTING               NEW YORK
        20 RESEARCH                 DALLAS
        30 SALES                         CHICAGO
        40 OPERATIONS               BOSTON
        50 錯(cuò)誤數(shù)據(jù)                     CHINA
 
SQL> commit;(2011-12-9 10:51:00)


提交完成。
正常情況下,由于已經(jīng)做了commit操作,所以rollback已經(jīng)無(wú)效了,要想得到2011-12-9 10:51:00之前的數(shù)據(jù),怎么辦?
使用timestamp時(shí)間點(diǎn)閃回:
SQL> select * from scott.dept as of timestamp to_timestamp('2011-12-09 10:00:00','yyyy-mm-dd hh24:mi:ss');
 
    DEPTNO DNAME                        LOC
---------- ---------------------------- -------------------------
        10  ACCOUNTING                   NEW YORK
        20  RESEARCH                      DALLAS
        30  SALES                         CHICAGO
        40  OPERATIONS                   BOSTON
閃回查詢,主要依靠表空間的undo數(shù)據(jù),如果想要追溯更久的數(shù)據(jù),就需要設(shè)置較大的undo_tablespaces大小和undo_retention。
 
如果想直接更新當(dāng)前的表到歷史的某個(gè)時(shí)間狀態(tài),可以直接使用flashback關(guān)鍵字:
 
 
SQL> alter table scott.dept enable row movement;


表已更改。
 
SQL> flashback table scott.dept to timestamp to_timestamp('2011-12-09 10:00:00','yyyy-mm-dd hh24:mi:ss');


閃回完成。
 
【注意】:
閃回不是萬(wàn)能的,當(dāng)一個(gè)表的數(shù)據(jù)較大或時(shí)間過(guò)長(zhǎng)時(shí),如果沒有設(shè)置較大的閃回空間和時(shí)間,閃回操作將會(huì)失敗,可能會(huì)出現(xiàn)以下錯(cuò)誤:

您可能感興趣的文章:
  • oracle drop table(表)數(shù)據(jù)恢復(fù)方法
  • oracle誤刪數(shù)據(jù)恢復(fù)方法小結(jié)
  • Oracle誤刪除表數(shù)據(jù)后的數(shù)據(jù)恢復(fù)詳解
  • 記一次Oracle數(shù)據(jù)恢復(fù)過(guò)程
  • oracle誤drop/update操作后的數(shù)據(jù)恢復(fù)測(cè)試

標(biāo)簽:贛州 棗莊 玉樹 蘇州 來(lái)賓 遼寧 長(zhǎng)沙 大興安嶺

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《最簡(jiǎn)單的Oracle數(shù)據(jù)恢復(fù) select as of使用方法》,本文關(guān)鍵詞  最簡(jiǎn)單,的,Oracle,數(shù)據(jù)恢復(fù),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《最簡(jiǎn)單的Oracle數(shù)據(jù)恢復(fù) select as of使用方法》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于最簡(jiǎn)單的Oracle數(shù)據(jù)恢復(fù) select as of使用方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    晋江市| 成安县| 澳门| 正蓝旗| 香格里拉县| 即墨市| 武平县| 磴口县| 鄯善县| 资阳市| 双城市| 革吉县| 敖汉旗| 湾仔区| 横峰县| 桂林市| 云林县| 昆山市| 六枝特区| 宁波市| 浏阳市| 平定县| 高邑县| 文登市| 阿坝县| 荥经县| 新丰县| 德保县| 菏泽市| 马鞍山市| 郴州市| 惠州市| 义乌市| 内黄县| 云林县| 册亨县| 民县| 易门县| 左权县| 福鼎市| 铜川市|