Last backup

girreis

ADSM.ORG Member
Joined
Feb 11, 2011
Messages
119
Reaction score
1
Points
0
Dear friends,

I wonder how do I list the last backup of a NODE_NAME, such as the time and day it was backed up and files?

It also has to list the schedules that have passed through SUCCESS?

Thanks for your attention.

Ramon
 
Hi Ramon,
You can get the Node backup information using the below select command.
select * from backups where node_name='NODE_NAME'
and Schedule status(whether it is completed, fail or missed) using the below query command
q event * * begind=-1 endd=-0

Regards
Naresh
 
select NODE_NAME, STATUS, COMPLETED from events


Do you need more details?
 
Back
Top