cancel
Showing results for 
Search instead for 
Did you mean: 

Custom report to show Deactivated Policy(ies) needed ASAP please!

BMcg66
Not applicable
I'm totally new to Backup Reporter and while I've done *some* in the past, it's not my forte.  I'm going to see what tutorial(s) are available to help me become proficient, but right now, time is precious.  What I need to create is a report for my VP of IT that shows what Backup Policy or Policies are currently deactivated.  Thanks!!
2 REPLIES 2

Zenshai
Level 4
select distinct backupPolicyName as InactivePolicy,
                objectPrimaryDisplayName as Masterserver
from ccsvc.backupPolicy,
     ccsvc.backupPolicydomain, 
     ccsvc.Object
where backupPolicyActive = 0
  and backupPolicyDomainID = backupPolicyBackupPolicyDomainID
  and backupPolicyDomainMasterServerObjectID = ObjectID

Hello.

 

Can you tell me what is ccsvc? while running query i am getting unable to find user id.