Please enter search query.
Search <book_title>...
NetBackup™ Web UI Oracle Administrator's Guide
Last Published:
2022-12-19
Product(s):
NetBackup & Alta Data Protection (10.1.1)
- Managing Oracle
- Managing Oracle RAC
- Managing Oracle credentials
- Oracle Copilot with instant access and universal share
- Prerequisites when you configure an instant access Oracle database
- Other Oracle configuration
Delete an instant access mount
You can delete the instant access mount when it is no longer used. To delete instant access mounts, it is recommended that you umount them first from the Oracle clients.
To delete an instant access mount
- On the left, select Workloads > Oracle.
- Click the Instant access databases tab.
The tab lists the instant access databases.
- Select Actions > Remove Instant access mount > Delete.
Ensure that you run the RMAN crosscheck command after the mount is deleted.
- After an instant access mount share is deleted, perform an RMAN crosscheck of the share before the next backup to prevent failures.
- Specify the "disk" type instead of a "SBT_TAPE" type. Use the default
<NetBackup_policyname>
. Or, if the datafile copy tag is changed in the Oracle tab, use that tag name in place of<NetBackup_policyname>
.Example command:
Run {
Allocate channel ch00 type 'disk';
crosscheck backup tag <Netbackup_policyname>;
delete noprompt expired backup;
crosscheck copy <Netbackup_policyname>;
delete noprompt expired copy;
release channel ch00;
}