Hi,
Is there a way to restore a specific data files for Oracle? I don't see it as an option. I can change the location of the data files to restore to, but I cannot select a specific data files that I want to restore.
Thanks
-
- Expert
- Posts: 161
- Liked: 16 times
- Joined: Nov 19, 2014 4:20 am
- Contact:
-
- Veeam Software
- Posts: 3815
- Liked: 643 times
- Joined: Aug 28, 2013 8:23 am
- Full Name: Petr Makarov
- Location: Prague, Czech Republic
- Contact:
Re: Restoring a specific datafiles in Oracle
Hello,
If you're talking about Veeam Explorer for Oracle, there is no option to select individual files because explorer restores the entire database. But you can change data file paths in the restore wizard. For granular restore operations, I recommend using Veeam Plug-in for Oracle RMAN as RMAN allows individual data files restore, for example:
Thanks!
If you're talking about Veeam Explorer for Oracle, there is no option to select individual files because explorer restores the entire database. But you can change data file paths in the restore wizard. For granular restore operations, I recommend using Veeam Plug-in for Oracle RMAN as RMAN allows individual data files restore, for example:
Code: Select all
RUN
{
ALTER DATABASE DATAFILE 9 OFFLINE;
SET NEWNAME FOR DATAFILE 9 TO '/disk2/users01.dbf';
RESTORE DATAFILE 9;
SWITCH DATAFILE ALL;
RECOVER DATAFILE 9;
ALTER DATABASE DATAFILE 9 ONLINE;
}
Who is online
Users browsing this forum: No registered users and 54 guests