How to recover a skipped tablespace after an incomplete recovery? (Doc ID 1561645.1)

APPLIES TO:

Oracle Database - Enterprise Edition - Version 11.2.0.1 and later
Oracle Database Cloud Schema Service - Version N/A and later
Oracle Database Exadata Express Cloud Service - Version N/A and later
Oracle Database Exadata Cloud Machine - Version N/A and later
Oracle Cloud Infrastructure - Database Service - Version N/A and later
Information in this document applies to any platform.

GOAL

How to recover a skipped tablespace after an incomplete recovery.
不完全恢复后如何恢复跳过的表空间
Skipped datafile is reported offline after resetlogs is done from Incomplete recovery.
从不完全恢复中完成 resetlogs 后,跳过的数据文件将报告为 offline 状态

  1. SQL> select * from V$recover_file;
  2.  
  3. FILE# ONLINE ONLINE_ ERROR CHANGE# TIME
  4. ---------- ------- ------- ----------------------------------------------------------------- ---------- --------------------
  5. 6 OFFLINE OFFLINE UNKNOWN ERROR 2386984 13-JUN-2013 22:52:39

This Document holds good if you have a Valid backup of the skipped tablespace.
如果您具有已跳过表空间的有效备份,则本文档非常有用

SOLUTION

NOTE: In the images and/or the document content below, the user information and environment data used represents fictitious data from the Oracle sample schema(s), Public Documentation delivered with an Oracle database product or other training material. Any similarity to actual environments, actual persons, living or dead, is purely coincidental and not intended in any manner.

For the purposes of this document, the following fictitious environment is used as an example to describe the procedure:
Database Name: PRODDB
Tablespace Name:  PRODDATA
Directory Location:  u01/app/oradb1

********

It is possible to restore and recover a skipped tablespace even when the database has been opened with resetlogs.

即使使用 resetlogs 打开了数据库,也可以 restore and recover 跳过的表空间。

As a best practice we always recommend testing the backups, restore and recovery scenario in your environment.

作为最佳实践,我们始终建议您在您的环境中测试备份,还原和恢复方案

In this note we will be skipping the tablespace PRODDATA

在本说明中,我们将跳过表空间PRODDATA

Database Structure and Backup  数据库结构与备份

Assume that we have the following tablespaces and a full backup is taken:

假设我们具有以下表空间,并已进行了完整备份

  1. SQL> select tablespace_name, file_name, status from dba_data_files order by 1;
  2.  
  3. TABLESPACE_NAME FILE_NAME STATUS
  4. -------------------- ---------------------------------------------------------------------- ---------
  5. EXAMPLE /u01/app/oradb1/oradata/PRODDB/datafile/o1_mf_example_8vg997t4_.dbf AVAILABLE
  6. PRODDATA /u01/app/oradb1/oradata/PRODDB/datafile/o1_mf_proddata_8vg9jlk1_.dbf AVAILABLE
  7. SYSAUX /u01/app/oradb1/oradata/PRODDB/datafile/o1_mf_sysaux_8vg997qs_.dbf AVAILABLE
  8. SYSTEM /u01/app/oradb1/oradata/PRODDB/datafile/o1_mf_system_8vg997sd_.dbf AVAILABLE
  9. UNDOTBS1 /u01/app/oradb1/oradata/PRODDB/datafile/o1_mf_undotbs1_8vg997wc_.dbf AVAILABLE
  10. USERS /u01/app/oradb1/oradata/PRODDB/datafile/o1_mf_users_8vg997xp_.dbf AVAILABLE
  11. USERS /u01/app/oradb1/oradata/PRODDB/datafile/o1_mf_users_8vg997vg_.dbf AVAILABLE
  12.  
  13. 7 rows selected.
  14.  
  15. $ rman target /
  16. Recovery Manager: Release 11.2.0.3.0 - Production on Thu Jun 13 22:43:27 2013
  17. Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.
  18. connected to target database: PRODDB (DBID=552982679)
  19.  
  20. RMAN> backup database plus archivelog;
  21. ...
  22.  
  23. piece handle=/u01/app/oradb1/fast_recovery_area/PRODDB/backupset/2013_06_13/o1_mf_nnndf_TAG20130613T224932_8vmhywt8_.bkp tag=TAG20130613T224932 comment=NONE
  24. channel ORA_DISK_1: backup set complete, elapsed time: 00:01:05
  25. Finished backup at 13-JUN-13
  26.  
  27. Starting Control File and SPFILE Autobackup at 13-JUN-13
  28. piece handle=/u01/app/oradb1/fast_recovery_area/PRODDB/autobackup/2013_06_13/o1_mf_s_818031037_8vmj0y3g_.bkp comment=NONE
  29. Finished Control File and SPFILE Autobackup at 13-JUN-13

Incomplete Recovery with a skipped tablespace.  具有跳过的表空间的不完全恢复

Skip a tablespace during restore/recovery get the rest of the database online for use.

在 restore/recovery 期间跳过表空间,以使数据库的其余部分联机使用

  1. $ rman target /
  2. Recovery Manager: Release 11.2.0.3.0 - Production on Thu Jun 13 22:54:08 2013
  3. Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.
  4. connected to target database: PRODDB (DBID=552982679, not open)
  5.  
  6. RMAN> run {
  7. set until sequence 10;
  8. restore database skip tablespace proddata;
  9. recover database skip tablespace proddata;
  10. }
  11.  
  12. executing command: SET until clause
  13.  
  14. Starting restore at 13-JUN-13
  15. using target database control file instead of recovery catalog
  16. allocated channel: ORA_DISK_1
  17. channel ORA_DISK_1: SID=20 device type=DISK
  18.  
  19. channel ORA_DISK_1: starting datafile backup set restore
  20. channel ORA_DISK_1: specifying datafile(s) to restore from backup set
  21. channel ORA_DISK_1: restoring datafile 00001 to /u01/app/oradb1/oradata/PRODDB/datafile/o1_mf_system_8vg997sd_.dbf
  22. channel ORA_DISK_1: restoring datafile 00002 to /u01/app/oradb1/oradata/PRODDB/datafile/o1_mf_sysaux_8vg997qs_.dbf
  23. channel ORA_DISK_1: restoring datafile 00003 to /u01/app/oradb1/oradata/PRODDB/datafile/o1_mf_undotbs1_8vg997wc_.dbf
  24. channel ORA_DISK_1: restoring datafile 00004 to /u01/app/oradb1/oradata/PRODDB/datafile/o1_mf_users_8vg997xp_.dbf
  25. channel ORA_DISK_1: restoring datafile 00005 to /u01/app/oradb1/oradata/PRODDB/datafile/o1_mf_example_8vg997t4_.dbf
  26. channel ORA_DISK_1: restoring datafile 00007 to /u01/app/oradb1/oradata/PRODDB/datafile/o1_mf_users_8vg997vg_.dbf
  27. channel ORA_DISK_1: reading from backup piece /u01/app/oradb1/fast_recovery_area/PRODDB/backupset/2013_06_13/o1_mf_nnndf_TAG20130613T222311_8vmgfhjm_.bkp
  28. channel ORA_DISK_1: piece handle=/u01/app/oradb1/fast_recovery_area/PRODDB/backupset/2013_06_13/o1_mf_nnndf_TAG20130613T222311_8vmgfhjm_.bkp tag=TAG20130613T222311
  29. channel ORA_DISK_1: restored backup piece 1
  30. channel ORA_DISK_1: restore complete, elapsed time: 00:00:57
  31. Finished restore at 13-JUN-13
  32.  
  33. Starting recover at 13-JUN-13
  34. using channel ORA_DISK_1
  35.  
  36. Executing: alter database datafile 6 offline --->>> (This is the datafile for PRODDATA)
  37. starting media recovery
  38.  
  39. archived log for thread 1 with sequence 8 is already on disk as file /u01/app/oradb1/fast_recovery_area/PRODDB/archivelog/2013_06_13/o1_mf_1_8_8vmghjn4_.arc
  40. archived log for thread 1 with sequence 9 is already on disk as file /u01/app/oradb1/fast_recovery_area/PRODDB/archivelog/2013_06_13/o1_mf_1_9_8vmhrdnv_.arc
  41. archived log file name=/u01/app/oradb1/fast_recovery_area/PRODDB/archivelog/2013_06_13/o1_mf_1_8_8vmghjn4_.arc thread=1 sequence=8
  42. archived log file name=/u01/app/oradb1/fast_recovery_area/PRODDB/archivelog/2013_06_13/o1_mf_1_9_8vmhrdnv_.arc thread=1 sequence=9
  43. media recovery complete, elapsed time: 00:00:00
  44. Finished recover at 13-JUN-13
  45.  
  46. SQL> alter database open resetlogs;
  47.  
  48. Database altered.
  49.  
  50. SQL> select file#, status from V$datafile;
  51.  
  52. FILE# STATUS
  53. ---------- -------
  54. 1 SYSTEM
  55. 2 ONLINE
  56. 3 ONLINE
  57. 4 ONLINE
  58. 5 ONLINE
  59. 6 OFFLINE
  60. 7 ONLINE
  61.  
  62. 7 rows selected.
  63.  
  64. SQL> select * from V$recover_file;
  65.  
  66. FILE# ONLINE ONLINE_ ERROR CHANGE# TIME
  67. ---------- ------- ------- ----------------------------------------------------------------- ---------- --------------------
  68. 6 OFFLINE OFFLINE UNKNOWN ERROR 2386984 13-JUN-2013 22:52:39

The skipped tablespace 'datafile' is offline and all the other 'datafiles' are online. 跳过的表空间 'datafile' 处于 offline 状态,而所有其他 'datafiles' 均处于online 状态

# V$tablespace shows the Tablespace 'PRODDATA' is still defined in dictionary and available

V$tablespace 显示表空间 'PRODDATA' 仍在字典中定义并且可用

  1. SQL> select * from v$tablespace ;

Performing recovery of the skipped tablespace.执行已跳过表空间的恢复

As the database incarnation increments after resetlogs, to pick up the new/current database incarnation you will need to re-initiate the rman session as below:

随着 resetlogs 后数据库 incarnation 的增加,要获取 new/current 的数据库 incarnation,您将需要重新启动rman会话,如下所示

  1. $ rman target /
  2.  
  3. Recovery Manager: Release 11.2.0.3.0 - Production on Thu Jun 13 23:03:24 2013
  4. Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.
  5. connected to target database: PRODDB (DBID=552982679)
  6.  
  7. RMAN> run {
  8. restore tablespace proddata;
  9. recover tablespace proddata;
  10. }
  11.  
  12. RMAN>
  13. Starting restore at 13-JUN-13
  14. using target database control file instead of recovery catalog
  15. allocated channel: ORA_DISK_1
  16. channel ORA_DISK_1: SID=17 device type=DISK
  17.  
  18. channel ORA_DISK_1: starting datafile backup set restore
  19. channel ORA_DISK_1: specifying datafile(s) to restore from backup set
  20. channel ORA_DISK_1: restoring datafile 00006 to /u01/app/oradb1/oradata/PRODDB/datafile/o1_mf_proddata_8vg9jlk1_.dbf
  21. channel ORA_DISK_1: reading from backup piece /u01/app/oradb1/fast_recovery_area/PRODDB/backupset/2013_06_13/o1_mf_nnndf_TAG20130613T222311_8vmgfhjm_.bkp
  22. channel ORA_DISK_1: piece handle=/u01/app/oradb1/fast_recovery_area/PRODDB/backupset/2013_06_13/o1_mf_nnndf_TAG20130613T222311_8vmgfhjm_.bkp tag=TAG20130613T222311
  23. channel ORA_DISK_1: restored backup piece 1
  24. channel ORA_DISK_1: restore complete, elapsed time: 00:00:01
  25. Finished restore at 13-JUN-13
  26.  
  27. RMAN>
  28. Starting recover at 13-JUN-13
  29. using channel ORA_DISK_1
  30.  
  31. starting media recovery
  32.  
  33. archived log for thread 1 with sequence 8 is already on disk as file /u01/app/oradb1/fast_recovery_area/PRODDB/archivelog/2013_06_13/o1_mf_1_8_8vmghjn4_.arc
  34. archived log for thread 1 with sequence 9 is already on disk as file /u01/app/oradb1/fast_recovery_area/PRODDB/archivelog/2013_06_13/o1_mf_1_9_8vmhrdnv_.arc
  35. archived log for thread 1 with sequence 1 is already on disk as file /u01/app/oradb1/fast_recovery_area/PRODDB/archivelog/2013_06_13/o1_mf_1_1_8vmjofl8_.arc
  36. archived log for thread 1 with sequence 2 is already on disk as file /u01/app/oradb1/fast_recovery_area/PRODDB/archivelog/2013_06_13/o1_mf_1_2_8vmjoh19_.arc
  37. archived log file name=/u01/app/oradb1/fast_recovery_area/PRODDB/archivelog/2013_06_13/o1_mf_1_8_8vmghjn4_.arc thread=1 sequence=8
  38. archived log file name=/u01/app/oradb1/fast_recovery_area/PRODDB/archivelog/2013_06_13/o1_mf_1_9_8vmhrdnv_.arc thread=1 sequence=9
  39. media recovery complete, elapsed time: 00:00:00
  40. Finished recover at 13-JUN-13
  41.  
  42. SQL> select * from V$recover_file;
  43.  
  44. no rows selected
  45.  
  46. SQL> select file#, status from V$datafile;
  47.  
  48. FILE# STATUS
  49. ---------- -------
  50. 1 SYSTEM
  51. 2 ONLINE
  52. 3 ONLINE
  53. 4 ONLINE
  54. 5 ONLINE
  55. 6 OFFLINE
  56. 7 ONLINE
  57.  
  58. 7 rows selected.
  59.  
  60. SQL> alter tablespace proddata online;
  61.  
  62. Tablespace altered.
  63.  
  64. SQL> select file#, status from V$datafile;
  65.  
  66. FILE# STATUS
  67. ---------- -------
  68. 1 SYSTEM
  69. 2 ONLINE
  70. 3 ONLINE
  71. 4 ONLINE
  72. 5 ONLINE
  73. 6 ONLINE
  74. 7 ONLINE
  75.  
  76. 7 rows selected.

Incomplete recovery of all datafiles of the skipped tablespace is performed till the earlier specified "set until" and tablespace can be brought online for use.

对跳过的表空间的所有数据文件执行不完全恢复,直到先前指定的 "set until" 和表空间可以联机使用

How to recover a skipped tablespace after an incomplete recovery? (Doc ID 1561645.1)的更多相关文章

  1. How to recover a skipped tablespace after an incomplete recovery with resetlogs? [ID 1561645.1]

    n this Document   Goal   Solution This document is being delivered to you via Oracle Support's Rapid ...

  2. RMAN RECOVER TABLE 功能是 Oracle Database 12c 的新增功能 (Doc ID 1521524.1)

    RMAN RECOVER TABLE Feature New to Oracle Database 12c (Doc ID 1521524.1) APPLIES TO: Oracle Database ...

  3. 如何为 Automatic Undo Management 调整 UNDO Tablespace 的大小 (Doc ID 262066.1)

    How To Size UNDO Tablespace For Automatic Undo Management (Doc ID 262066.1) APPLIES TO: Oracle Datab ...

  4. Troubleshooting ORA-30036 - Unable To Extend Undo Tablespace (Doc ID 460481.1)

    Troubleshooting ORA-30036 - Unable To Extend Undo Tablespace (Doc ID 460481.1) APPLIES TO: Oracle Da ...

  5. tspitr(tablespace point in time recovery)实验

    ===========环境模拟================= -----------模拟数据---------------- SYS@ORCL>create tablespace test ...

  6. V4 Reduce Transportable Tablespace Downtime using Cross Platform Incremental Backup (Doc ID 2471245.1)

    V4 Reduce Transportable Tablespace Downtime using Cross Platform Incremental Backup (Doc ID 2471245. ...

  7. Recover With Until Time fails With RMAN-20207 When Time Is Before Last RESETLOGS (Doc ID 159405.1)

    Recover With Until Time fails With RMAN-20207 When Time Is Before Last RESETLOGS (Doc ID 159405.1) A ...

  8. ODA: After Apply ODA 12.2.1.2.0 Patch, Unable to Create TableSpace Due to [ORA-15001: diskgroup "DATA" does not exist or is not mounted | ORA-15040: diskgroup is incomplete] (Doc ID 2375553.1)

    ODA: After Apply ODA 12.2.1.2.0 Patch, Unable to Create TableSpace Due to [ORA-15001: diskgroup &quo ...

  9. 故障排除指南(TSG)-ORA-01552: Cannot Use System Rollback Segment for Non-System Tablespace (Doc ID 1579215.1)

    Troubleshooting Guide (TSG) - ORA-01552: Cannot Use System Rollback Segment for Non-System Tablespac ...

随机推荐

  1. numpy的基本API(四)——拼接、拆分、添加、删除

    numpy的基本拼接.拆分.添加.删除API iwehdio的博客园:https://www.cnblogs.com/iwehdio/ 1.np.concatenate((a, b), axis=0) ...

  2. 一起学SpringMVC之RequestMapping详解

    本文以一个简单的小例子,简述SpringMVC开发中RequestMapping的相关应用,仅供学习分享使用,如有不足之处,还请指正. 什么是RequestMapping? RequestMappin ...

  3. C# 从字符串中提取指定字符类型的内容

    从一段字符串中,提取中文.英文.数字 中文字符30Margin中文字符40HorizontalAlignment 正则表达式: /// <summary> /// 英文字母与数字 /// ...

  4. C# -- RSA加密与解密

    1.  RSA加密与解密  --  使用公钥加密.私钥解密 public class RSATool { public string Encrypt(string strText, string st ...

  5. RabbitMQ 在.Net 中的使用

    RabbitMQHelper public static class RabbitMQHelper { // 定义 RabbitMQ 基本参数 private static string HostNa ...

  6. go笔记--json包使用

    目录 Marshal Unmarshal 处理json对象 @ json包实现了json对象的编解码,参见RFC 4627.Json对象和go类型的映射关系主要通过Marshal和Unmarshal函 ...

  7. Using the Security System 使用安全系统

    In this lesson, you will learn how to use a Security System in the application. When you use this sy ...

  8. 剑指offer笔记面试题7----重建二叉树

    题目:输入某二叉树的前序遍历和中序遍历的结果,请重建该二叉树.假设输入的前序遍历和中序遍历的结果中都不含重复的数字.例如,输入前序遍历序列{1, 2, 4, 7, 3, 5, 6, 8}和中序遍历序列 ...

  9. [转]企业创新平台—Power Platform 的架构与应用场景

    本文转自:https://www.microsoft.com/china/events/video_311

  10. [转载]——Automatic Tuning of Undo_retention Causes Space Problems (文档 ID 420525.1)

    Automatic Tuning of Undo_retention Causes Space Problems (文档 ID 420525.1) 转到底部 In this Document   Sy ...