You can perform restore operations by using the Commvault Command Line Interface.
Procedure
-
Download the restore_template.xml file to the computer where you will run the command.
-
Define parameter values in the XML file by editing the restore_template.xml file to update the parameters.
-
On the command line, go to software_installation_directory/Base, and then type the following command:
If the sourceItem parameter contains a directory path, verify the path is valid before you run the command.
qoperation execute -af restore_template.xml -appName '$[Oracle RAC]' -clientName '$[client_name]' -instanceName '$[dbname]' -sourceItem '$[source_item]' -racDataStreamAllcation '$[instance_id] $[number_of_streams]'
where racDataStreamAllcation is a required parameter (if not specified in the XML file) and is the instance ID and the number of streams to assign to that instance ID, for instance, '69 2'.
For information about additional parameters, see XML Parameters for Oracle RAC Backups and Restores.
Examples
Restoring from a Current Backup
qoperation execute -af restore_template.xml -appName '$[Oracle RAC]' -clientName $[client1] -destPath '$[/etc4]' -sourceItem '$[/etc]' -racDataStreamAllcation '$[69 2]'
Restoring Files to a Point in Time (Date)
qoperation execute -af restore_template.xml -appName '$[Oracle RAC]' -clientName $[client1] -destPath '$[/etc4]' -sourceItem '$[/etc]' -racDataStreamAllcation '$[69 2]' -toTimeValue $[2019-11-28]
Restoring Files to a Point in Time (Date and Time)
qoperation execute -af restore_template.xml -instanceName $[instance_Name] -appName "$[Oracle RAC]" -clientName "$[rklin-cluster]" -recoverFrom $[1] -ctrlRestoreFrom $[true] -restoreControlFile $[true] -restoreSPFile $[false] -TimeValue "$[2025-07-29 12:10:00]" -racDataStreamAllcation "$[185 3]"
Restoring Files to SCN
qoperation execute -af restore_template.xml -instanceName $[instance_Name] -appName "$[Oracle RAC]" -clientName "$[rklin-cluster]" -recoverFrom $[2] -ctrlRestoreFrom $[true] -restoreControlFile $[true] -restoreSPFile $[false] -recoverSCN $[74442525] -racDataStreamAllcation "$[185 3]"
Restoring Files to the Most Recent Backup
qoperation execute -af restore_template.xml -instanceName $[instance_Name] -appName "$[Oracle RAC]" -clientName "$[rklin-cluster]" -recoverFrom $[3] -ctrlRestoreFrom $[true] -restoreControlFile $[true] -restoreSPFile $[false] -recoverSCN -TimeValue "$[2025-07-29 12:10:00]" -racDataStreamAllcation "$[185 3]"