Quantcast
Channel: Veeam Support Knowledge Base
Viewing all articles
Browse latest Browse all 4362

Veeam ONE compatibility patch for Veeam Backup & Replication 9.5 Update 4

$
0
0

Challenge

After upgrading Veeam Backup & Replication servers to version 9.5 Update 4, Veeam Cloud Connect monitoring and reporting in Veeam ONE 9.5 Update 3 will stop working.

Cause

This issue is caused by incompatibility of Veeam Backup & Replication 9.5 Update 4 and Veeam ONE 9.5 Update 3. To resolve this issue, confirm you are running Veeam ONE version 9.5.0.3801 prior to installing this compatibility patch.

Solution

There are several ways of applying the hotfix:

Using SQL Server Management Studio
 

  1. Open Veeam ONE Monitor client and check the lower part of the window for the SQL instance name and Veeam ONE database name.
User-added image

Alternatively, check the same via Veeam ONE Settings Utility (C:\Program Files\Common Files\Veeam\Veeam ONE Settings).
 
  1. Open Microsoft SQL Server Management Studio with the Administrator permissions (may need to be installed separately KB1761).
  2. Connect to the ServerName\Instance of the server that has the Veeam ONE database.
  3. Expand the Databases tree and select "VeeamOne" database. 
  4. Right-click on the database > New Query.
User-added image
  1. Copy the following query and run it against the database:
IF OBJECT_ID('monitor.[ENUM_CTVI_PV]', 'C') IS NOT NULL
  ALTER TABLE monitor.BpCloudTenantVersionInfo
   DROP CONSTRAINT [ENUM_CTVI_PV];​​
  1. If the query was performed correctly, you will get the following status in the SQL Server Management Studio: Commands completed successfully.

Using SQL command line

In case you do not have the Management Studio installed, run the hotfix against the Veeam ONE database using the SQLCMD utility:
 
  1. Open Veeam ONE Monitor client and check the lower part of the window for the SQL instance name and Veeam database name.
User-added image

Alternatively, check the same via Veeam ONE Settings Utility (C:\Program Files\Common Files\Veeam\Veeam ONE Settings).
 
  1. Open Windows command line or PowerShell prompt using the Veeam ONE Service account and run the hotfix against the Veeam ONE database:
     
    for default instances (change the database name in the query if it differs from yours):
sqlcmd -S SqlServerName -q "USE VeeamOne IF OBJECT_ID('monitor.[ENUM_CTVI_PV]', 'C') IS NOT NULL ALTER TABLE monitor.BpCloudTenantVersionInfo DROP CONSTRAINT [ENUM_CTVI_PV];"

for named instances (change the database name in the query if it differs from yours):
 
sqlcmd -S SqlServerName\SqlInstanceName -q "USE VeeamOne IF OBJECT_ID('monitor.[ENUM_CTVI_PV]', 'C') IS NOT NULL ALTER TABLE monitor.BpCloudTenantVersionInfo DROP CONSTRAINT [ENUM_CTVI_PV];"
 
 
In case you have SQL server authentication enabled you may define username and password (change the database name in the query if it differs from yours):
 
sqlcmd -S SqlServerName\SqlInstanceName -U username -P password -q "USE VeeamOne IF OBJECT_ID('monitor.[ENUM_CTVI_PV]', 'C') IS NOT NULL ALTER TABLE monitor.BpCloudTenantVersionInfo DROP CONSTRAINT [ENUM_CTVI_PV];"

More Information

Should have any questions, contact Veeam Support.

Viewing all articles
Browse latest Browse all 4362

Trending Articles