Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

Problem: Unable to rescan vCenter application with version 2.14.205.

Cause:

There is an issue with the DataTTL column when setting the recan for vCenters. Even though the value is set to 1 (which is the value for daily rescan) there rescan is happening.

To view the last successful scan date use

Select * From ApplicationScanHistory where ApplicationID in (Select ApplicationID From Application where applicationTypeEnumID = 12)
Order by LastSuccessfulDate

Confirm the vCenter is ApplicationTypeEnumID = 12

 

Resolution:

Set up a SQL Server Agent Job to run Daily,Weekly or Monthly

Job executes:

UPDATE ApplicationScanHistory SET AttemptCount = 1, NextScanDate = GETDATE()
WHERE ApplicationID IN
(SELECT ApplicationID FROM Application WHERE ApplicationTypeEnumID = 12)

 

 

  • No labels