【正文】
in Archivelog Mode rman target / RMAN STARTUP MOUNT RMAN RESTORE DATABASE。 RMAN RECOVER DATABASE。 RMAN ALTER DATABASE OPEN。 RMAN Inplete Recovery UNTIL TIME Example RMAN run { 2 allocate channel c1 type DISK。 3 allocate channel c2 type DISK。 4 set until time = ‘20221209:11:44:0039。 5 restore database。 6 recover database。 7 alter database open resetlogs。 } RMAN Inplete Recovery UNTIL SEQUENCE Example RMAN RUN { 2 SET UNTIL SEQUENCE 120 THREAD 1。 3 ALTER DATABASE MOUNT。 4 RESTORE DATABASE。 5 RECOVER DATABASE。 recovers through log 119 6 SQL ALTER DATABASE OPEN RESESTLOGS。 7 }