What governs the 'Last Inventory Received' date and time stamp in Resource Manager for the 'Altiris Agent Details'?
search cancel

What governs the 'Last Inventory Received' date and time stamp in Resource Manager for the 'Altiris Agent Details'?

book

Article ID: 178535

calendar_today

Updated On:

Products

IT Management Suite

Issue/Introduction

 

Resolution

Question
What governs the 'Last Inventory Received' date and time stamp in Resource Manager for the 'Altiris Agent Details'?

Answer
Resource Manager uses the ResourceUpdateSummary table as the source for this value. If you run the following query at different times of the day and compare the top few data classes with the date and time stamp that is being displayed in Resource Manager, you will find the data class that is being used at that moment.


SELECT vc.[Name] AS Resource,dc.[Name] AS [Table],rus.CreatedDate,rus.ModifiedDate
FROM ResourceUpdateSummary rus
JOIN vComputer vc
ON vc.Guid = rus.ResourceGuid
JOIN DataClass dc
ON dc.Guid = rus.InventoryClassGuid
WHERE vc.[Name] = '<machine name>'
ORDER BY rus.ModifiedDate DESC