Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RMAN TSPITR and Dataguard
Of course, since it's the weekend .....
I need to restore a tablespace in my production instance. I'm using RMAN and have full backups, logs, etc. Not a problem . Except I'm running a dataguard instance and I'm not sure what the effect is going to be. Here's my plan (pretty much already inplace):
db_name = PR1
lock_name_space = clone
log_archive_start = false
remote_login_passwordfile = exclusive
control_files = ( /sappr1mig/cntrl/cntrlclone.dbf)
DB_FILE_NAME_CONVERT=('/oracle/PR1/','/sappr1mig/')
LOG_FILE_NAME_CONVERT=('/oracle/PR1/','/sappr1mig/')
4. I'v created a directory in the tf70_1 directory in /oracle/PR1/sapdata2/
on
both the target and the standby (Dataguard) databases.
5. I can startup nomount the clone, and connect to the clone, the target (PR1) and the catalog.
6. If I run the following script
#!/usr/bin/ksh
export ORACLE_HOME=/oracle/PR1/920_64
export ORACLE_SID=clone
export PATH=$PATH:$ORACLE_HOME/bin
rman <<EOJ
connect target sys/<password>@pr1
connect auxiliary sys/<password>@clone
connect catalog rmanadmin/<password>@rcat
run
{
set newname for datafile '/oracle/PR1/sapdata1/tf70_1/tf70.data1'
TO
'/oracle/PR1/sapdata2/tf70_1/tf70.data1';
recover tablespace tf70 until time '2006-11-03:19:00:00';}
exit
EOJ Then RMAN will
A. Take the tf70 tablespace to be recovered offline. B. Restore the datafile to the auxiliary instance. C. Recover the restored datafile to the specified time. D. Open the auxiliary database with the RESETLOGS option. E. Export the dictionary metadata about objects in the recoveredtablespaces—the DDL to create the objects along with pointers to the physical
And my question: Is the dataguard instance is going to pick up the fact there is a newly recovered datafile in a different location and get that completely copied?
I've created datafiles in the past with no problem, trucated tables and reloaded, etc. without issue, just not sure how the new datafile, which is being restored to the primary (target), is going to get copied up to the standby. It's not really a create tablespace or add datafile type command, or is it?
-- http://www.freelists.org/webpage/oracle-lReceived on Sat Nov 04 2006 - 15:55:16 CST
![]() |
![]() |