网络编程 | 站长之家 | 网页制作 | 图形图象 | 操作系统 | 冲浪宝典 | 软件教学 | 网络办公 | 邮件系统 | 网络安全 | 认证考试 | 系统进程
Firefox | IE | Maxthon | 迅雷 | 电驴 | BitComet | FlashGet | QQ | QQ空间 | Vista | 输入法 | Ghost | Word | Excel | wps | Powerpoint
asp | .net | php | jsp | Sql | c# | Ajax | xml | Dreamweaver | FrontPages | Javascript | css | photoshop | fireworks | Flash | Cad | Discuz!
当前位置 > 网站建设学院 > 网络编程 > 数据库 > Oracle教程
Tag:注入,存储过程,分页,安全,优化,xmlhttp,fso,jmail,application,session,防盗链,stream,无组件,组件,md5,乱码,缓存,加密,验证码,算法,cookies,ubb,正则表达式,水印,索引,日志,压缩,base64,url重写,上传,控件,Web.config,JDBC,函数,内存,PDF,迁移,结构,破解,编译,配置,进程,分词,IIS,Apache,Tomcat,phpmyadmin,Gzip,触发器,socket
数据库:数据库教程,数据库技巧,Oracle教程,MySQL教程,Sybase教程,Access教程,DB2教程,数据库安全,数据库文摘
本月文章推荐
.Oracle 8(8.0.5)标准版安装指南.
.Tomcat配置技巧Top 10 [ZT].
.关于触发器修改自身数据表实例.
.TestKing Oracle 1z0-040 V1.
.Weblogic中访问oracle数据库的连.
.FreeBSD-5.2下安装ORACLE9i手记.
.关于Oracle和SQL存储调试和出错处.
.Redhat 8.0 下Gaim0.58 for QQ、.
.用windows 2000的osloader启动多.
.如何在Oracle中实现时间相加处理.
.DataGuard.
.教你Oracle Advanced Replication.
.Oracle数据库技术(28).
.Oracle多个远程输入验证漏洞.
.Oracle电子邮件系统危机重挫CIO.
.简单在线备份 script.
.Decode 函数的用法.
.如何使得sendmail不出现帮助信息.
.oracle 使用杂记1.
.给vi 初学者 (2).

oracle9i中Rman的备份使用点滴

发表日期:2008-2-9



  rman的简单使用: catalog的建立,全备份,保留备份策略,删除过期备份。
  
  1. 查看当前数据库的数据文件
  
  SQL> select name from V$datafile;
  
  NAME
  --------------------------------------------------------------------------------
  /Oracle/oracle9i/oradata/testmysiteok/system01.dbf
  /oracle/oracle9i/oradata/testmysiteok/undotbs01.dbf
  /oracle/oracle9i/oradata/testmysiteok/cwmlite01.dbf
  /oracle/oracle9i/oradata/testmysiteok/drsys01.dbf
  /oracle/oracle9i/oradata/testmysiteok/example01.dbf
  /oracle/oracle9i/oradata/testmysiteok/indx01.dbf
  /oracle/oracle9i/oradata/testmysiteok/odm01.dbf
  /oracle/oracle9i/oradata/testmysiteok/tools01.dbf
  /oracle/oracle9i/oradata/testmysiteok/users01.dbf
  /oracle/oracle9i/oradata/testmysiteok/xdb01.dbf
  /oracle/oradata/webdb_file1.dbf
  
  NAME
  --------------------------------------------------------------------------------
  /oracle/oradata/webdb_file2.dbf
  /oracle/oradata/webdb_file3.dbf
  /oracle/oradata/webdb_file4.dbf
  
  14 rows selected.
  
  2. 建立catalog表空间为back_up
  
  SQL> create tablespace back_up datafile '/oracle/oradata/catalog.dbf' size 50m;
  
  Tablespace created.
  
  3. 建立rman用户密码为rman,rman默认的表空间为back_up,使用临时表空间temp
  
  SQL> create user rman identified by rman default tablespace back_up temmporary tablespace temp;
  create user rman identified by rman default tablespace back_up temmporary tablespace temp
                                  *
  ERROR at line 1:
  ORA-00922: missing or invalid option
  
  SQL> create user rman identified by rman default tablespace back_up temporary tablespace temp;
  
  User created.
  
  4. 给rman用户授权
  
  SQL> grant connect,resource,recovery_catalog_owner to rman;
  
  Grant sUCceeded.
  
  SQL> quit
  Disconnected from Oracle9i Enterprise Edition Release 9.2.0.1.0 - 64bit Production
  With the Partitioning, OLAP and Oracle Data Mining options
  JServer Release 9.2.0.1.0 - Production
  
  5. 连接或者创建catalog到表空间 back_up
  
  bash-2.05$ rman
  
  Recovery Manager: Release 9.2.0.1.0 - 64bit Production
  
  Copyright (c) 1995, 2002, Oracle Corporation. All rights reserved.
  
  RMAN> connect catalog rman/rman;
  
  connected to recovery catalog database
  recovery catalog is not installed
  
  RMAN> create catalog tablespace backup;
  
  RMAN-00571: ===========================================================
  RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
  RMAN-00571: ===========================================================
  RMAN-00558: error encountered while parsing input commands
  RMAN-01005: syntax error: found "backup": eXPecting one of: "double-quoted-string, identifier, single-quoted-string"
  RMAN-01007: at line 1 column 27 file: standard input
  
  RMAN-00571: ===========================================================
  RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
  RMAN-00571: ===========================================================
  RMAN-00558: error encountered while parsing input commands
  RMAN-01005: syntax error: found ";": expecting one of: "allocate, alter, backup, beginline, blockrecover, catalog, change, connect, copy, create, crosscheck, configure, duplicate, debug, delete, drop, exit, endinline, host, {, library, list, mount, open, print, quit, recover, register, release, replace, report, renormalize, reset, restore, resync, rman, run, rpctest, set, setlimit, sql, spool, startup, shutdown, send, show, test, upgrade, validate"
  RMAN-01007: at line 1 column 33 file: standard input
  
  RMAN> create catalog tablespace back_up;
  
  recovery catalog created
  
  RMAN> quit
  
  Recovery Manager complete.
  
  6. 连接到sid 为testmysiteok的 catalog上 ,并注册testmysiteok数据库
  
  bash-2.05$ rman target 'testmysiteok' catalog rman/rman
  
  Recovery Manager: Release 9.2.0.1.0 - 64bit Production
  
  Copyright (c) 1995, 2002, Oracle Corporation. All rights reserved.
  
  target database PassWord:
  connected to target database: testmysiteOK (DBID=3999769622)
  connected to recovery catalog database
  
  RMAN> register database;
  
  database registered in recovery catalog
  starting full resync of recovery catalog
  full resync complete
  
  7. 全备份testmysiteok数据库
  
  RMAN> backup full tag 'testmysiteok' format '/data/ora_backup/testmysiteok_%u_%s_%p' database;
  
  Starting backup at 07-AUG-05
  allocated channel: ORA_DISK_1
  channel ORA_DISK_1: sid=31 devtype=DISK
  channel ORA_DISK_1: starting full datafile backupset
  channel ORA_DISK_1: specifying datafile(s) in backupset
  including current SPFILE in backupset
  including current controlfile in backupset
  input datafile fno=00001 name=/oracle/oracle9i/oradata/testmysiteok/system01.dbf
  input datafile fno=00002 name=/oracle/oracle9i/oradata/testmysiteok/undotbs01.dbf
  input datafile fno=00005 name=/oracle/oracle9i/oradata/testmysiteok/example01.dbf
  input datafile fno=00011 name=/oracle/oradata/webdb_file1.dbf
  input datafile fno=00012 name=/oracle/oradata/webdb_file2.dbf
  input datafile fno=00013 name=/oracle/oradata/webdb_file3.dbf
  input datafile fno=00014 name=/oracle/oradata/webdb_file4.dbf
  input datafile fno=00015 name=/oracle/oradata/catalog.dbf
  input datafile fno=00010 name=/oracle/oracle9i/oradata/testmysiteok/xdb01.dbf
  input datafile fno=00006 name=/oracle/oracle9i/oradata/testmysiteok/indx01.dbf
  input datafile fno=00009 name=/oracle/oracle9i/oradata/testmysiteok/users01.dbf
  input datafile fno=00003 name=/oracle/oracle9i/oradata/testmysiteok/cwmlite01.dbf
  input datafile fno=00004 name=/oracle/oracle9i/oradata/testmysiteok/drsys01.dbf
  input datafile fno=00007 name=/oracle/oracle9i/oradata/testmysiteok/odm01.dbf
  input datafile fno=00008 name=/oracle/oracle9i/oradata/testmysiteok/tools01.dbf
  channel ORA_DISK_1: starting piece 1 at 07-AUG-05
  channel ORA_DISK_1: finished piece 1 at 07-AUG-05
  piece handle=/data/ora_backup/testmysiteok_04grgroc_4_1 comment=NONE
  channel ORA_DISK_1: backup set complete, elapsed time: 00:00:36
  Finished backup at 07-AUG-05
  
  8. 设置保留最近的3次备份
  
  RMAN> configure retention policy to redundancy 3;
  
  old RMAN configuration parameters:
  CONFIGURE RETENTION POLICY TO REDUNDANCY 2;
  new RMAN configuration parameters:
  CONFIGURE RETENTION POLICY TO REDUNDANCY 3;
  new RMAN configuration parameters are successfully stored
  starting full resync of recovery catalog
  full resync complete
  
  9. 查看过期的备份
  
  RMAN> report obsolete;
  
  RMAN retention policy will be applied to the command
  RMAN retention policy is set to redundancy 2
  Report of obsolete backups and copies
  Type         Key  Completion Time  Filename/Handle
  -------------------- ------ ------------------ --------------------
  Backup Set      590  16-OCT-05
   Backup Piece    591  16-OCT-05     /oracle/testmysiteok20051016.dbf
  Archive Log     424  29-SEP-05     /oracle/OraHome/dbs/arch1_56.dbf
  
  10. 查看所有备份
  
  RMAN> list backup;
  
  11. 删除过期备份
  
  RMAN> delete obsolete;
  
  RMAN retention policy will be applied to the command
  RMAN retention policy is set to redundancy 2
  using channel ORA_DISK_1
  Deleting the following obsolete backups and copies:
  Type         Key  Completion Time  Filename/Handle
  -------------------- ------ ------------------ --------------------
  Backup Set      590  16-OCT-05
   Backup Piece    591  16-OCT-05     /oracle/testmysiteok20051016.dbf
  Archive Log     424  29-SEP-05     /oracle/OraHome/dbs/arch1_56.dbf
  
  Do you really want to delete the above objects (enter YES or NO)?
y
  deleted backup piece
  backup piece handle=/oracle/testmysiteok20051016.dbf recid=15 stamp=571867105
  Deleted 1 objects
上一篇:一个关于DATEBASE TRIGGER的问题解析 人气:686
下一篇:Oracle的实体化视图管理 人气:935
浏览全部Oracle教程的内容 Dreamweaver插件下载 网页广告代码 祝你圣诞节快乐 2009年新年快乐