rman總結

xsdan發表於2006-11-10
rman作為oracle備份最為方便的工具,以下就總結幾條常用的命令,希望能方便大家,也希望可以申請授權:
1、首先使用rman前,需要建一個目錄資料庫[@more@]2、create tablespce rman datafile '/data/oradata/test/rman.dbf' size 20m;
3、create user rman identified by rman default tablespace rman temporary tablespace temp;
4、grant connect,resource,recovery_catalog_ower to rman;
以上建庫和建使用者基本成功,接著:
1、rman target sys/manager@ora8 catalog rman/rman@rman
2、register database (同步資料庫,如果資料庫做了alter database open resetlogs,就需要reset database,如果有庫結構變化,就需要

resync catalog)
3、create script back {
allocate channel n1 type disk;
backup database
format '/data/backup/ora8_%d_%s_%p';
release channel n1;}
4、如果是備份固定的檔案或表空間也可以
create script back_file{
allocate channel n1 type disk;
copy
datafile 4 to '/data/backup/users.dbf';
release channel n1;}
create script back_tablespace{
allocate channel m1 type disk;
backup tablespace users
format '/data/backup/users_%t_%s_%p';
release channel n1;}
使用copy就是檔案映象儲存,使用backup就是用oracle專有的格式儲存,支援壓縮等等,此處就不細說了!
5、執行備份
run{execute script back;}
等等!
以上說了備份資料庫,下面是恢復資料庫
1、rman target sys/manager@ora8 catalog rman/rman@rman
2、run{
allcote channel n1 type disk;
sql "alter tablespce users offline immediate";
restore tablespace users;
recover tablespace users;
sql "alter tablespace user online";
release channel n1;}
3、run{
allocate channel n1 type disk;
restore database;
recover database;
sql "alter database open resetlogs";
release channel n1;}
4、run{
allocate channel n1 type disk;
restore datafile 4;
release channel n1;}

以上都是一些基本的rman操作

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/262387/viewspace-876857/,如需轉載,請註明出處,否則將追究法律責任。

相關文章