Ransomware attackers specifically target and attempt to destroy backup systems to increase the probability of payment. Hardening your system is critical. Please ensure you have reviewed your platform security using the Security Hardening Checklist
Cohesity

COHESITY Documentation

Explore our documentation to get started, discover products & new features, access troubleshooting guides, register sources, platforms support.

Products
Data Security Alliance
Visit Cohesity.com
Demos
Support
Blogs
Developers
Partner Portals
Cohesity Community
© 2026 Cohesity, Inc. All Rights Reserved.
Terms of Use|
Privacy Policy|
Legal|
  1. Home
  2. Veritas NetBackup™ for Oracle Administrator's Guide
  3. NetBackup for Oracle with Snapshot Client
  4. How NetBackup for Oracle with Snapshot Client works
  5. Restoring data files to a new location
Veritas NetBackup™ for Oracle Administrator's Guide

Restoring data files to a new location

NetBackup for Oracle with Snapshot Client can restore the data files that are backed up by proxy to a new location. The new location can be specified by using the RMAN set newname command or ALTER DATABASE RENAME DATAFILE statement before a restore is initiated. For example, to restore a data file for tablespace TEST to a new location, you can use the following RMAN commands:

   RUN
    {
    allocate channel t1 'SBT_TAPE';
    sql 'alter tablespace TEST offline immediate'
    # restore the datafile to a new location
    set newname for datafile '/oradata/test.f' to
    '/oradata_new/test.f';
    restore tablespace TEST;
    # make the control file recognize the restored file as current
    switch datafile all;
    recover tablespace TEST;
    release channel t1;
    }

The RMAN procedure for the data files that are backed up by proxy is the same as for conventionally backed up data files. RMAN knows that the data files were backed up by proxy, and it issues a proxy restore request to NetBackup for Oracle, which restores the data files to the new location. For more information on the required procedure, see your Oracle documentation.

Feedback

Was this page helpful?
Previous

RMAN multiple channels

Next

Redirecting a restore to a different client

Feedback

Was this page helpful?