27/05/2010, 11:37
|
| | | Fecha de Ingreso: mayo-2008
Mensajes: 57
Antigüedad: 16 años, 6 meses Puntos: 3 | |
Respuesta: Recuperar datos con RMAN Hola,
http://ss64.com/ora/rman_restore.html#restoreObject
Restore the control file, (to all locations specified in the parameter file) then restore the database, using that control file:
STARTUP NOMOUNT;
RUN
{
ALLOCATE CHANNEL c1 DEVICE TYPE sbt;
RESTORE CONTROLFILE;
ALTER DATABASE MOUNT;
RESTORE DATABASE;
}
Quizá te interese también UNTIL TIME:
http://download.oracle.com/docs/cd/B12037_01/server.101/b10734/rcmrecov.htm
Saludos. |