restore archivelog 的各種用法

2022-06-07 08:36:11 字數 822 閱讀 5558

備份所有歸檔日誌檔案

rman> backup archivelog all delete input;

第一: restore archivelog 的各種選項

1.restore archivelog all   恢復全部歸檔日誌檔案

rman> restore archivelog all;

2.只恢復 5到8這四個歸檔日誌檔案

rman> restore archivelog from logseq 5 until logseq 8;

3.恢復從第5個歸檔日誌起

rman> restore archivelog from logseq 5;

4.恢復7天內的歸檔日誌

rman> restore archivelog from time 'sysdate-7';

5. sequence between 寫法

rman> restore archivelog sequence between 1 and 3;

6.恢復到哪個日誌檔案為止

rman> restore archivelog until logseq 3;

7.從第五個日誌開始恢復

rman> restore archivelog low logseq 5;

8.到第5個日誌為止

rman> restore archivelog high logseq 5;

如果想改變恢復到另外路徑下 則可用下面語句

set archivelog destination to 'd:\backup';

rman> run

來自 「 itpub部落格 」

Android用WebView遇到的各種問題

在專案裡某些頁面是用webview載入的 h5頁面,h5頁面與原生結合往往出現很多問題,下面把最近遇到的問題記錄一下。一 標題是原生,h5頁面又 內嵌了幾層。webview呼叫goback 有的機型手機不走onreceivedtitle 方法。客戶端原生做的標題title需要跟h5頁面的標題一致。原...

用遞迴刪除各種節點

include include include define maxsize 1000typedef intelemtype typedef struct node node typedef node linkednode 1 求以h為頭指標的單鏈表的節點個數 int getnodenum link...

python 隱藏函式lambda的各種用法

lambda x x 21print lambda x x 2 1 5 sorted 排序的意思 排序物件,key 使用該函式的返回值進行排序,匿名函式lambda 引數名 排序物件 age reverse true從大到小排預設由小到大 temp filter none,1,3.14 none,0...