【12C考题精解】OCP 1z0-060 QUESTION 6: Recovery of a Tablespace in the PDB

QUESTION 6


Your multitenant container database, CDB1, is running in ARCHIVELOG mode and has two pluggable databases, HR_PDB and ACCOUNTS_PDB. An RMAN backup exists for the database.?You issue the command to open ACCOUNTS_PDB and find that the USERDATA.DBF data file for the default permanent tablespace USERDATA belonging to ACCOUNTS_PDB is corrupted.
What should you do before executing the commands to restore and recover the data file in ACCOUNTS_PDB?


A. Place CDB1 in the mount stage and then the USERDATA tablespace offline in ACCOUNTS_PDB.
B. Place CDB1 in the mount stage and issue the ALTER PLUGGABLE DATABASE accounts_pdb CLOSE IMMEDIATE command.
C. Issue the ALTER PLUGGABLE DATABASE accounts_pdb RESTRICTED command.
D. Take the USERDATA tablespace offline in ACCOUNTS_PDB.


【题目示意】
本题考察的是PDB中的表空间完全恢复,需要注意的是,根据题意分析,ACCOUNTS_PDB应该是已经open的PDB,发生数据文件损坏。

【解析】
在数据库已经open的情况下,某些非关键数据文件发生损坏。应该在保证数据库其他数据文件可用的状态下,对损坏的文件或损坏文件所在的表空间进行restore和recover操作。在restore之前,要求表空间处于offline状态。
使用rman连接12C的多容器数据库时,可以在ROOT container中,或者一个或多个PDB container中执行RMAN操作。
1.可以使用RMAN连到root container,来操作整个CDB
2.可以使用RMAN连到root container,来操作root container
3.可以使用RMAN连到root 或者PDB,来操作某一个container
如果连到root container,必须在rman命令中使用 PLUGGABLE DATABASE关键字。如:使用BACKUP PLUGGABLE DATABASE命令备份一个PDB 如果连到PDB,只需要使用BACKUP DATABASE来备份PDB
4.连到root container,可以使用一条命令操作多个PDB,如备份sales和hr这两个PDB,使用下面的命令BACKUP PLUGGABLE DATABASE sales, hr;
5.直接连到PDB有些操作是受限的:
备份归档日志 删除归档日志 删除归档日志备份 还原归档日志(在介质恢复期间rman不能还原归档日志) pitr基于时间点的恢复 TSPITR基于表空间的时间点恢复 表恢复 复制数据库 闪回操作 运行Data Recovery Advisor report/delete obsolete 注册catalog数据库 导入catalog 重启数据库 配置rman环境 configure 当连到PDB,是不能连到catalog的

连接到root container的三种方法:
1.使用sys 用户来连接root container
  1. [oracle@dbstyle ~]$ rman target sys

  2. Recovery Manager: Release 12.1.0.1.0 - Production on Fri Aug 8 12:10:58 2014

  3. Copyright (c) 1982, 2013, Oracle and/or its affiliates. All rights reserved.

  4. target database Password:
  5. connected to target database: DBSTYLE (DBID=2767578829)

  6. RMAN>
复制代码
2.使用操作系统验证来连接root
  1. [oracle@dbstyle ~]$ rman target /

  2. Recovery Manager: Release 12.1.0.1.0 - Production on Fri Aug 8 12:11:48 2014

  3. Copyright (c) 1982, 2013, Oracle and/or its affiliates. All rights reserved.

  4. connected to target database: DBSTYLE (DBID=2767578829)

  5. RMAN>
复制代码
3.通过net service 使用具备sysbackup权限的common 用户来连接root
  1. [oracle@dbstyle ~]$ rman target c##dbstyle/oracle@DBSTYLE

  2. Recovery Manager: Release 12.1.0.1.0 - Production on Fri Aug 8 12:15:33 2014

  3. Copyright (c) 1982, 2013, Oracle and/or its affiliates. All rights reserved.

  4. connected to target database: DBSTYLE (DBID=2767578829)

  5. RMAN>
复制代码
连接到pdb的方法
  1. [oracle@dbstyle ~]$ rman target hr/hr@DBS

  2. Recovery Manager: Release 12.1.0.1.0 - Production on Fri Aug 8 12:19:34 2014

  3. Copyright (c) 1982, 2013, Oracle and/or its affiliates. All rights reserved.

  4. connected to target database: DBSTYLE (DBID=2767578829)

  5. RMAN>
复制代码
【实验】
1.启动PDB
  1. [oracle@dbstyle ~]$ sqlplus / as sysdba

  2. SQL*Plus: Release 12.1.0.1.0 Production on Fri Aug 8 11:14:50 2014

  3. Copyright (c) 1982, 2013, Oracle. All rights reserved.

  4. Connected to:
  5. Oracle Database 12c Enterprise Edition Release 12.1.0.1.0 - 64bit Production
  6. With the Partitioning, Oracle Label Security, OLAP, Advanced Analytics
  7. and Real Application Testing options

  8. SYS@DBSTYLE> alter session set container=dbs;

  9. Session altered.

  10. SYS@DBSTYLE> startup
  11. Pluggable Database opened.
复制代码
2.删除数据文件,模拟损坏
  1. SYS@DBSTYLE>!rm -rf /u01/app/oracle/oradata/DBSTYLE/DBS/DBS_users01.dbf
复制代码
3.此时使用丢失数据文件的表空间,出现报错
  1. SYS@DBSTYLE> create table test tablespace users as select * from dba_objects;
  2. create table test tablespace users as select * from dba_objects
  3. *
  4. ERROR at line 1:
  5. ORA-01110: data file 9: '/u01/app/oracle/oradata/DBSTYLE/DBS/DBS_users01.dbf'
  6. ORA-01116: error in opening database file 9
  7. ORA-27041: unable to open file
  8. Linux-x86_64 Error: 2: No such file or directory
  9. Additional information: 3
复制代码
4.此时丢失数据文件的表空间为online状态
  1. SYS@DBSTYLE> select TABLESPACE_NAME,STATUS from dba_tablespaces;


  2. TABLESPACE_NAME    STATUS
  3. ------------------------------ ---------
  4. SYSTEM                    ONLINE
  5. SYSAUX                    ONLINE
  6. TEMP                       ONLINE
  7. USERS                      ONLINE
复制代码
5.如果直接进行恢复,会有报错,如下:
  1. [oracle@dbstyle DBS]$ rman target sys/oracle@DBS

  2. Recovery Manager: Release 12.1.0.1.0 - Production on Fri Aug 8 10:41:05 2014

  3. Copyright (c) 1982, 2013, Oracle and/or its affiliates.  All rights reserved.

  4. connected to target database: DBSTYLE (DBID=2767578829)

  5. RMAN> list backup;


  6. List of Backup Sets
  7. ===================


  8. BS Key  Type LV Size       Device Type Elapsed Time Completion Time
  9. ------- ---- -- ---------- ----------- ------------ ---------------
  10. 2       Full    762.73M    DISK        00:00:03     07-AUG-14      
  11.         BP Key: 2   Status: AVAILABLE  Compressed: NO  Tag: TAG20140807T232050
  12.         Piece Name: /u01/app/oracle/fast_recovery_area/DBSTYLE/FDD32A078F321802E0430A50A8C0F4FF/backupset/2014_08_07/o1_mf_nnndf_TAG20140807T232050_9y76cd33_.bkp
  13.   List of Datafiles in backup set 2
  14.   File LV Type Ckp SCN    Ckp Time  Name
  15.   ---- -- ---- ---------- --------- ----
  16.   7       Full 1563093    07-AUG-14 /u01/app/oracle/oradata/DBSTYLE/DBS/system01.dbf
  17.   8       Full 1563093    07-AUG-14 /u01/app/oracle/oradata/DBSTYLE/DBS/sysaux01.dbf
  18.   9       Full 1563093    07-AUG-14 /u01/app/oracle/oradata/DBSTYLE/DBS/DBS_users01.dbf

  19. RMAN> restore datafile 9;

  20. Starting restore at 08-AUG-14
  21. using target database control file instead of recovery catalog
  22. allocated channel: ORA_DISK_1
  23. channel ORA_DISK_1: SID=57 device type=DISK

  24. channel ORA_DISK_1: starting datafile backup set restore
  25. channel ORA_DISK_1: specifying datafile(s) to restore from backup set
  26. channel ORA_DISK_1: restoring datafile 00009 to /u01/app/oracle/oradata/DBSTYLE/DBS/DBS_users01.dbf
  27. channel ORA_DISK_1: reading from backup piece /u01/app/oracle/fast_recovery_area/DBSTYLE/FDD32A078F321802E0430A50A8C0F4FF/backupset/2014_08_07/o1_mf_nnndf_TAG20140807T232050_9y76cd33_.bkp
  28. RMAN-00571: ===========================================================
  29. RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
  30. RMAN-00571: ===========================================================
  31. RMAN-03002: failure of restore command at 08/08/2014 10:41:13
  32. ORA-19870: error while restoring backup piece /u01/app/oracle/fast_recovery_area/DBSTYLE/FDD32A078F321802E0430A50A8C0F4FF/backupset/2014_08_07/o1_mf_nnndf_TAG20140807T232050_9y76cd33_.bkp
  33. ORA-19573: cannot obtain exclusive enqueue for datafile 9
复制代码
6.首先将有问题的表空间offline:
  1. SYS@DBSTYLE> alter tablespace users offline immediate;

  2. Tablespace altered.

  3. SYS@DBSTYLE> select TABLESPACE_NAME,STATUS from dba_tablespaces;

  4. TABLESPACE_NAME    STATUS
  5. ------------------------------ ---------
  6. SYSTEM                   ONLINE
  7. SYSAUX                   ONLINE
  8. TEMP                      ONLINE
  9. USERS                    OFFLINE
复制代码
7.恢复离线的表空间:
  1. RMAN> restore datafile 9;

  2. Starting restore at 08-AUG-14
  3. using channel ORA_DISK_1

  4. channel ORA_DISK_1: starting datafile backup set restore
  5. channel ORA_DISK_1: specifying datafile(s) to restore from backup set
  6. channel ORA_DISK_1: restoring datafile 00009 to /u01/app/oracle/oradata/DBSTYLE/DBS/DBS_users01.dbf
  7. channel ORA_DISK_1: reading from backup piece /u01/app/oracle/fast_recovery_area/DBSTYLE/FDD32A078F321802E0430A50A8C0F4FF/backupset/2014_08_07/o1_mf_nnndf_TAG20140807T232050_9y76cd33_.bkp
  8. channel ORA_DISK_1: piece handle=/u01/app/oracle/fast_recovery_area/DBSTYLE/FDD32A078F321802E0430A50A8C0F4FF/backupset/2014_08_07/o1_mf_nnndf_TAG20140807T232050_9y76cd33_.bkp tag=TAG20140807T232050
  9. channel ORA_DISK_1: restored backup piece 1
  10. channel ORA_DISK_1: restore complete, elapsed time: 00:00:01
  11. Finished restore at 08-AUG-14

  12. RMAN> recover datafile 9;

  13. Starting recover at 08-AUG-14
  14. using channel ORA_DISK_1
  15. applied offline range to datafile 00009
  16. offline range RECID=7 STAMP=855013520

  17. starting media recovery
  18. media recovery complete, elapsed time: 00:00:00

  19. Finished recover at 08-AUG-14
复制代码
8.恢复完成,使表空间上线:
  1. SYS@DBSTYLE> select TABLESPACE_NAME,STATUS from dba_tablespaces;

  2. TABLESPACE_NAME   STATUS
  3. ------------------------------ ---------
  4. SYSTEM                   ONLINE
  5. SYSAUX                    ONLINE
  6. TEMP                       ONLINE
  7. USERS                     OFFLINE

  8. SYS@DBSTYLE> alter tablespace users online;

  9. Tablespace altered.

  10. SYS@DBSTYLE> select TABLESPACE_NAME,STATUS from dba_tablespaces;

  11. TABLESPACE_NAME    STATUS
  12. ------------------------------ ---------
  13. SYSTEM                     ONLINE
  14. SYSAUX                     ONLINE
  15. TEMP                        ONLINE
  16. USERS                      ONLINE

  17. SYS@DBSTYLE>
复制代码


【小结】
对于已经打开的PDB,如果数据文件发生损坏,对数据库影响最小的处理方法就是,让丢失了数据文件的表空间离线,然后进行restore和recovery,进而使表空间恢复正常。而把CDB启动到mount模式等操作显然是对数据库影响很大,因此不应采用。


【答案】 D



相关参考
http://docs.oracle.com/database/121/BRADV/rcmcnctg.htm#BRADV671
http://docs.oracle.com/database/121/BRADV/rcmcomre.htm#BRADV89773


更多精彩文章,请访问作者个人博客:www.dbstyle.net

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/28552278/viewspace-1248526/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/28552278/viewspace-1248526/

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值