Forum Discussion

yobole's avatar
yobole
Level 6
10 years ago
Solved

Backup Logs for last 3months for a server

We are going through an Audit and I need to show the backup logs for 3 servers i backup with Netbackup for the last 3 months . Any idea how i can do this from ops center . cannot see any out of the box reports in there . I am using Ops center 7.6.0.4

  • Adding backup jobachive.type and removing the requirement to match the parent id to job id

    select
    domain_JobArchive.clientName as 'Client',
    domain_JobArchive.Statuscode as "Status",
    domain_JobArchive.policyName as "Policy Name",

    domain_JobArchive.ScheduleName as "Schedule Name",

    lookup_policytype.name as "Policy Type",
    UTCBigIntToNomTime(domain_JobArchive.endTime) as 'End Time'
    from domain_JobArchive, lookup_policytype
    where

    domain_jobarchive.type in (0)
    and

    lookup_policytype.id=domain_JobArchive.policyType
    and
    DATEDIFF(month,UTCBigIntToNomTime(domain_JobArchive.endTime), GETDATE()) <=1

26 Replies