OCP Oracle 10g管理(一):配置恢复管理器
2008-09-05 12:51:32 来源:WEB开发网 Createuserrman_useridentifiedbyrman_userdefaulttablespacexxxtemporaryxxx;
4) 用户授权,指定默认和零时表空间
Grantconnect,resource,recover_catalog_ownertorman_user;
5) 启动RMAN
rman
6) 连接到恢复目录
Connectcatalogrman_user/rman_user
7) 指定恢复目录的表空间
Createcatalogtablespacexxx;
为了备份和恢复,必须完成以下几步:
注册数据库
Rmantargetxx/xxx@xxx
Connectcatalogxxx/xxx@xxx
Registerdatabase;
一旦注册了目标数据库就可以备份目标数据库,就是把备份数据存储在恢复目录中。
执行备份
目标库启动到mount状态
启动rman,连接目标库和目录库
Connecttarget
Connectcatalogxxx/xxx@xxx;
备份目标数据库(包括归档日志)
RMAN>run{
allocatechannelc1typedisk;
backdatabaseformat'db_%u_%d_%s';
backupformat'log_t%t_s%s_p%p'
(archivelogall);
}
意外发现:备份集默认保存在D:oracleproduct10.2.0db_1database下
执行恢复
RMAN>run
2>{allocatechannelc1typedisk;
3>allocatechannelc2typedisk;
4>allocatechannelc3typedisk;
5>restoredatabase;
6>recoverdatabase;
7>alterdatabaseopen;
8>}
多个channel是为了改进重建和恢复时间。
- ››oracle 中 UPDATE nowait 的使用方法
- ››Oracle ORA-12560解决方法
- ››Oracle 10g RAC 常用维护命令
- ››Oracle如何在ASM中定位文件的分布
- ››Oracle的DBMS_RANDOM.STRING 的用法
- ››oracle 外部表导入时间日期类型数据,多字段导入
- ››Oracle中查找重复记录
- ››oracle修改用户登录密码
- ››Oracle创建删除用户、角色、表空间、导入导出等命...
- ››Oracle中登陆时报ORA-28000: the account is lock...
- ››Oracle数据库在配置文件中更改最大连接数
- ››Oracle中在pl/sql developer修改表的两种方式
更多精彩
赞助商链接