Host-based backup of VMware vSphere VMs.
Post Reply
storageguy
Expert
Posts: 153
Liked: 13 times
Joined: Nov 19, 2014 4:20 am
Contact:

Restoring a specific datafiles in Oracle

Post by storageguy »

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
PetrM
Veeam Software
Posts: 3264
Liked: 528 times
Joined: Aug 28, 2013 8:23 am
Full Name: Petr Makarov
Location: Prague, Czech Republic
Contact:

Re: Restoring a specific datafiles in Oracle

Post by PetrM »

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:

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;
}
Thanks!
Post Reply

Who is online

Users browsing this forum: No registered users and 41 guests