閃回技術(學習筆記)

2022-04-19 23:26:34 字數 842 閱讀 7843

閃回技術(flashback)

示例一、

刪除emp和dept

drop table emp;

drop table dept;

檢視**站:

select

*from

recyclebin

--內容過多

select

object_name

,original_name 原來的名稱,operation 操作,type 檔案型別

from recyclebin;

恢復dept表和emp表

flashback table emp to before drop

;flashback

table dept to before drop

此時再檢視**站

select

*from

recyclebin

--已經沒有這2個表了

查詢當前使用者下的表

select

*from

tab;

--可以發現emp,和dept已經恢復

從**站刪除表

purge table 表名稱;

清空**站

purge recyclebin;

直接將表刪除不經過**站

drop

table 表名稱 purge;

閃回技術(學習筆記)

閃回技術 flashback 示例一 刪除emp和dept drop table emp drop table dept 檢視 站 select from recyclebin 內容過多 select object name original name 原來的名稱,operation 操作,type...

oracle閃回技術

1,閃回資料庫到之前某時間點 在安裝時需要開放閃回功能 不支援表空間刪除 select name from v database 看是否開啟閃回功能 select flashback on,name from v database select name from v bgprocess where...

oracle閃回技術

查詢某一時刻資料庫中資料狀態語句 select from abc as of timestamp to timestamp 2015 08 24 10 31 00 yyyy mm dd hh24 mi ss 閃回dml語句 flashback table abc to timestamp to ti...