freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內容

不動產登記信息管理系統(tǒng)平臺硬整體解決方案-資料下載頁

2025-04-27 23:28本頁面
  

【正文】 恢復目錄數(shù)據(jù)庫必須打開,目標數(shù)據(jù)庫至少要STARTED(unmount),否則RMAN會返回一個錯誤,目標數(shù)據(jù)庫必須置于歸檔模式下。 使用不帶恢復目錄的RMAN設置目標數(shù)據(jù)庫的 ORACLE_SID ,執(zhí)行:% rman nocatalogRMAN connect targetRMAN connect target internal/@his 使用帶恢復目錄的RMAN% rman rman_ts rman/rman@rmanRMAN connect target% rman rman_ts rman/rman@rman target internal/@his 使用RMAN一旦連接到目標數(shù)據(jù)庫,可以通過交互界面或者事先存儲的腳本執(zhí)行指定RMAN命令,下面是一個使用RMAN交互界面的實例:RMAN resync catalog。RMAN03022:正在編譯命令:resyncRMAN03023:正在執(zhí)行命令:resyncRMAN08002:正在啟動全部恢復目錄的 resyncRMAN08004:完成全部 resync使用腳本的實例:RMAN execute script alloc_1_disk。創(chuàng)建或者替代存儲的腳本:RMAN replace script alloc_1_disk { 2 allocate channel d1 type disk。 3 } 在非歸檔模式下備份恢復目錄數(shù)據(jù)庫需要打開,目標數(shù)據(jù)庫必須啟動(或者加載)。因為目標數(shù)據(jù)庫不在歸檔模式下,所以當進行備份恢復操作的時候數(shù)據(jù)庫無法打開。不可以將表空間置于熱備份模式上進行等同于文件系統(tǒng)級的拷貝,如果在非歸檔模式,數(shù)據(jù)庫打開的狀態(tài)下不能進行數(shù)據(jù)文件的備份。 數(shù)據(jù)庫完全備份RMAN run { 2 backup the plete database to disk 3 allocate channel dev1 type disk。 4 backup 5 full 6 tag full_db_backup 7 format /oracle/backups/db_t%t_s%s_p%p 8 (database)。 9 release channel dev1。 10 }行2: 表明該行為注釋行(#是注釋符)3amp。9: See section 15 Channels通道定義5: Full backup (default if full or incremental not specified)完全備份模式(缺省模式)6: Meaningful string (=30 chars)(備份集標識,=30個字符)7: Filename to use for backup pieces, including substitution variables. 備份片使用的文件名,可以包含代替變量。8: Indicates all files including controlfiles are to be backed up表明備份所有數(shù)據(jù)文件包括控制文件通過下面的命令顯示恢復目錄中記載的備份集信息:RMAN list backupset of database。 備份表空間RMAN run { 2 allocate channel dev1 type disk。 3 backup 4 tag tbs_users_read_only 5 format /oracle/backups/tbs_users_t%t_s%s 6 (tablespace users) 7 }使用下列命令來顯示恢復目錄中該表的備份信息:RMAN list backupset of tablespace users。假設USERS表空間在備份后被置為READ ONLY表空間,以后的全庫備份就可以不用備份該表空間,為了達到這個目的,可以在以后的備份中指定skip readonly。注意,目標數(shù)據(jù)庫不需要一定打開,只要加載就可以,因為表空間的信息存儲在控制文件中。 備份單獨數(shù)據(jù)文件RMAN run { 2 allocate channel dev1 type SBT_TAPE。 3 backup 4 format %d_%u 5 (datafile /oracle/dbs/)。 6 release channel dev1。 7 }行2: 使用MML(media manager layer)分配磁帶驅動器,必須指定類型為SBT_TAPE;使用下面的命令顯示恢復目錄中備份的表空間: RMAN list backupset of datafile 1。 備份數(shù)據(jù)文件RMAN run { 2 allocate channel dev1 type SBT_TAPE。 3 copy datafile /oracle/dbs/ to /oracle/backups/。 4 release channel dev1。 5 }使用下面的命令顯示恢復目錄中的文件拷貝:RMAN list copy of datafile /oracle/dbs/。拷貝數(shù)據(jù)文件和備份數(shù)據(jù)文件是不一樣的,數(shù)據(jù)文件拷貝是一個該文件的鏡像。文件的備份產生一個備份集。 RMAN run { 2 allocate channel dev1 type SBT_TAPE。 3 backup 4 format cf_t%t_s%s_p%p 5 tag cf_monday_night 6 (current controlfile)。 7 release channel dev1。 8 } 增量備份N級別增量備份備份從最近的N級別或者更小級別以來的所有更改過的數(shù)據(jù)塊內容。增量備份分為兩種,一種是累積增量備份,一種是非累積增量備份。累積增量備份包括自最后一次在更低級別進行備份以來所有改動過的數(shù)據(jù)塊。非累積增量備份包括自前一次在同級或者更低級別進行備份以來改動過的數(shù)據(jù)塊。 Level 0增量備份策略的基礎Level 0 是增量備份策略的基礎the basis of the incremental backup strategyRMAN run { 2 allocate channel dev1 type disk。 3 backup 4 incremental level 0 5 filesperset 4 6 format /oracle/backups/sunday_level0_%t 7 (database)。 8 release channel dev1。 9 }Line4: 0級備份5: 定義每個backupset 的最大文件數(shù)使用LIST語句查看,數(shù)據(jù)庫備份集的列表顯示中, type 將顯示 Incremental,LV列將顯示0 。 使用增量備份的案例一個典型的增量備份案例如下:   星期天晚上 level 0 backup performed   星期一晚上 level 2 backup performed   星期二晚上 level 2 backup performed   星期三晚上 level 1 backup performed   星期四晚上 level 2 backup performed   星期五晚上 level 2 backup performed   星期六晚上 level 2 backup performed   星期天晚上 level 0 backup performed 恢復 Database open,datafile deleted 數(shù)據(jù)庫打開時,文件被刪除數(shù)據(jù)文件在數(shù)據(jù)庫打開時被刪除。有兩種方法可以對打開的數(shù)據(jù)庫進行恢復:還原數(shù)據(jù)文件或者表空間。下面兩個實例顯示了該方法:(a) Datafile recovery 數(shù)據(jù)文件恢復RMAN run { 2 allocate channel dev1 type disk。 3 sql alter tablespace users offline immediate。 4 restore datafile 4。 5 recover datafile 4。 6 sql alter tablespace users online。 7 release channel dev1。 8 }(b) Tablespace recovery 表空間恢復RMAN run { 2 allocate channel dev1 type disk。 3 sql alter tablespace users offline immediate。 4 restore tablespace users。 5 recover tablespace users。 6 sql alter tablespace users online。 7 release channel dev1。 8 }注意:如果還原系統(tǒng)表空間文件,數(shù)據(jù)庫必須關閉,因為系統(tǒng)表空間不可以脫機。 Complete restore (lost online redo) and rollforward database closed 完全還原(丟失聯(lián)機日志)并且前滾 數(shù)據(jù)庫關閉RMAN run { 2 allocate channel dev1 type disk。 3 set until logseq=105 thread=1。 4 restore controlfile to /oracle/dbs/。 5 replicate controlfile from /oracle/dbs/。 6 restore database。 7 sql alter database mount。 8 recover database。 9 sql alter database open resetlogs。 10 release channel dev1。 11 }Notes:set until 命令指明恢復到指定的日志文件。這一點在數(shù)據(jù)文件恢復時很重要,否則RMAN將試圖恢復最近的數(shù)據(jù)文件,該數(shù)據(jù)文件可能在指定的日志以前。replicate controlfile 。如果數(shù)據(jù)庫使用WITH RESETLOGS打開,則需要使用RESET DATABASE命令注冊改變后的數(shù)據(jù)庫。在使用RESETLOGS命令打開數(shù)據(jù)庫后強烈建議做一個完全的數(shù)據(jù)庫備份。 還原數(shù)據(jù)文件的子集,完全恢復RMAN run { 2 allocate channel dev1 type disk。 3 sql alter database mount。 4 restore datafile 2。 5 restore datafile 3。 6 restore archivelog all。 7 recover database。 8 sql alter database open。 9 release channel dev1。 10 } 6. 存儲區(qū)域網(wǎng)絡(SAN)架構SAN(Storage Area Network,存儲區(qū)域網(wǎng)絡)是一個由存儲設備和系統(tǒng)部件構成的網(wǎng)絡。所有的通信都在一個與應用網(wǎng)絡隔離的單獨的網(wǎng)絡上完成,可以被用來集中和共享存儲資源。SAN不但提供了對數(shù)據(jù)設備的高性能連接,提高了數(shù)據(jù)備份速度,還增加了對存儲系統(tǒng)的冗余連接,提供了對高可用群集系統(tǒng)的支持。簡單地說,SAN是關聯(lián)存儲設備和服務器的網(wǎng)絡。SAN的優(yōu)勢l SAN網(wǎng)絡具有出色的可擴展性,理論上最多可以連接1600萬個設備;l SAN網(wǎng)絡可以集中管理數(shù)據(jù),從而降低總體擁有成本;l 利用光纖通道技術,SAN可以有效地傳輸數(shù)據(jù)塊;l 開放的、標準化的光纖通道技術使得SAN非常靈活;l SAN克服了傳統(tǒng)上與SCSI相連的線纜限制,極大地拓展了服務器和存儲之間的距離,從而增加了更多連接的可能性;l 改進的擴展性還簡化了服務器的部署和升級,保護了原有硬件設備的投資。根據(jù)利辛縣國土資源局縣級不動產登記信息管理基礎平臺建設需求,服務器與存儲設備采用通過光纖實現(xiàn)了高可用的FC SAN架構的連接方式進行設計,所以次存儲系統(tǒng)采用FC SAN架構存儲。38 /
點擊復制文檔內容
公司管理相關推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1