I what to ask is, when I restore the spfile from backup (FRA auto backup).
Many doc. said that i needed to
- Code: Select all
RMAN> SET DBID <dbid>;
before restore.
But, i found that, and try many many times. I can
- Code: Select all
startup nomount
RUN
{
ALLOCATE CHANNEL c1 DEVICE type disk;
RESTORE SPFILE TO PFILE 'my_path'
FROM 'o1_mf_nnsnf_TAG20121025T213913_88lj81sv_.bkp';
SHUTDOWN ABORT;
}
restore the pfile without set dbid.
I am confused about, why and can I omit the "set DBID" ?
thanks.