We are in DP V8.0
I try to restore a only tablespace at a time without restoring all the database. It's a TSPITR in oracle langage.
i try to execute it with rman command line but i have an error. With the DP GUI it seems not to be possible.
Is there a solution with DP to to TSPITR ?
my error :
RMAN> allocate channel for maintenance type 'sbt_tape' parms 'SBT_LIBRARY=/opt/omni/lib/libob2oracle8_64bit.so,ENV=(OB2MAINTENANCE=1)';
RMAN> RECOVER TABLESPACE DATA, IND until time "to_date('18-mar-2014 11:02;00','DD-Mon-yyyy HH24:MI:SS')" AUXILIARY DESTINATION '/oragard/jylh';
Starting recover at 18-MAR-14
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=324 instance=PRCi1 device type=DISK
RMAN-05026: WARNING: presuming following set of tablespaces applies to specified point-in-time
List of tablespaces expected to have UNDO segments
Tablespace SYSTEM
Tablespace UNDOTBS1
Tablespace UNDOTBS2
Creating automatic instance, with SID='pdke'
initialization parameters used for automatic instance:
db_name=PRCI
db_unique_name=pdke_tspitr_PRCI
compatible=11.2.0.2.0
db_block_size=8192
db_files=200
sga_target=280M
processes=50
db_create_file_dest=/oragard/jylh
log_archive_dest_1='location=/oragard/jylh'
#No auxiliary parameter file used
starting up automatic instance PRCI
Oracle instance started
Total System Global Area 292278272 bytes
Fixed Size 2225872 bytes
Variable Size 134220080 bytes
Database Buffers 146800640 bytes
Redo Buffers 9031680 bytes
Automatic instance created
Running TRANSPORT_SET_CHECK on recovery set tablespaces
TRANSPORT_SET_CHECK completed successfully
contents of Memory Script:
{
# set requested point in time
set until time "to_date('18-mar-2014 11:02;00','DD-Mon-yyyy HH24:MI:SS')";
# restore the controlfile
restore clone controlfile;
# mount the controlfile
sql clone 'alter database mount clone database';
# archive current online log
sql 'alter system archive log current';
# avoid unnecessary autobackups for structural changes during TSPITR
sql 'begin dbms_backup_restore.AutoBackupFlag(FALSE); end;';
}
executing Memory Script
executing command: SET until clause
Starting restore at 18-MAR-14
allocated channel: ORA_AUX_DISK_1
channel ORA_AUX_DISK_1: SID=6 device type=DISK
Removing automatic instance
shutting down automatic instance
Oracle instance shut down
Automatic instance removed
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of recover command at 03/18/2014 14:12:55
RMAN-03015: error occurred in stored script Memory Script
RMAN-06026: some targets not found - aborting restore
RMAN-06024: no backup or copy of the control file found to restore
Thanks