Unpublish-VEORDatabase
Short Description
Unpublishes Oracle databases from the target server.
Applies to
Veeam Backup & Replication
Product Edition: Community, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
Unpublish-VEORDatabase [-Databases] <VEORPublishedDatabase[]> [-Force <SwitchParameter>] [<CommonParameters>] |
Detailed Description
This cmdlet unpublishes Oracle databases from the target server.
Parameters
Parameter | Description | Type | Required | Position | Accept Pipeline Input |
---|---|---|---|---|---|
Databases | Specifies the Oracle databases that the cmdlet will unpublish from the target Oracle server. | Accepts the VEORPublishedDatabase[] object. To get this object, run the Get-VEORPublishedDatabase cmdlet. | True | 0 | True |
Force | Defines that the cmdlet will show no prompt before executing the command. | SwitchParameter | False | Named | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.
Example
Unpublishing Oracle Databases
This example shows how to unpublish Oracle databases.
$session = Get-VEORRestoreSession $databases = Get-VEORPublishedDatabase -Session $session[0] Unpublish-VEORDatabase -Databases $databases |
Perform the following steps:
- Run the Get-VEORRestoreSession cmdlet. Save the result to the $session variable.
The cmdlet will return an array of restore sessions. Note the ordinal number of the necessary restore session. In our example, it is the first restore session in the array.
- Run the Get-VEORPublishedDatabase cmdlet. Set the $session variable as the Session parameter value and select the necessary restore session. Save the result to the $databases variable.
- Run the Unpublish-VEORDatabase cmdlet. Set the $databases variable as the Databases parameter value.
Related Commands