recovering db from incrementally updated disk image [message #322198] |
Thu, 22 May 2008 14:20 |
lvoorhee
Messages: 2 Registered: May 2008
|
Junior Member |
|
|
Hi,
I am testing an rman restore from an incrementally updated disk image backup. I'm running the code below, but it fails with an ORA-00907. Looking at my code, it looks like all my i's are dotted and t's crossed.
Has anyone else encountered?
RMAN> RUN
2> {
3> SET UNTIL TIME "TO_DATE('2008-04-29:13:32:00','yyyy-dd-mm:hh24:mi:ss')";
4> RESTORE DATABASE;
5> RECOVER DATABASE;
6> ALTER DATABASE OPEN RESETLOGS;
7> }
executing command: SET until clause
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of set command at 04/29/2008 16:17:01
ORA-00907: missing right parenthesis
RMAN>
|
|
|
|
|