/build/static/layout/Breadcrumb_cap_w.png

Easy way to gather Check-in history?

We are needing to know when and how many times a machine has checked in over its history.  Anyone know of a way to generate this in a report or script?  Thanks for any help.


0 Comments   [ + ] Show comments

Answers (1)

Answer Summary:
Posted by: chucksteel 10 years ago
Red Belt
1

Sorry, my formatting got screwy....

Asset history is stored in the ASSET_HISTORY table. For a list of times that a machine has checked in you could use the following query:

SELECT DISTINCT(TIME)
FROM ASSET_HISTORY
WHERE NAME = 'computername'
ORDER BY TIME

In my experience at least one thing changes with every checkin so this query should return a list of every time the machine has checked in. For a straight dump of everything that has changed use this query:

SELECT *
FROM ASSET_HISTORY
WHERE NAME = 'computername'
ORDER BY TIME

 


Comments:

Don't be a Stranger!

Sign up today to participate, stay informed, earn points and establish a reputation for yourself!

Sign up! or login

Share

 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ