Note that satisfying a recovery window-based retention policy will generally require that you keep backups older than the beginning of the recovery window. A point-in-time recovery to the beginning of the recovery window would require a restore from this backup, and then applying all changes between the backup time and the point of recoverability. For example, you might configure a recovery window of three days:RMAN> CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 3 DAYS;If your last full database backup was six days ago, RMAN will keep the six-day-old backup, and all redo logs required to roll the database forward to the beginning of the recovery window three days ago, in addition to any backups and redo logs needed to recover the database to all points in time within the three day window.各位大虾。特别是红色部分,配置保留备份为3天,那么六天前的备份不是过期了吗,这段ORACLE 文档想说明什么

解决方案 »

  1.   

    理解红色的主要是要理解如下的内容,你说的红色的部分只是对这部分内容的举例:
    Note that satisfying a recovery window-based retention policy will generally require that you keep backups older than the beginning of the recovery window. A point-in-time recovery to the beginning of the recovery window would require a restore from this backup
      

  2.   

    CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 3 DAYS; 
    3天前的备份状态是过期的,但是并不代表你的恢复就不需要这些备份了,下面的例子就说明的是这种情况!