cancel
Showing results for 
Search instead for 
Did you mean: 

Creating a custom report List of Policies, Clients, Schedules.

Naota
Level 4
Hello Community,

Does anyone know how to create a report to List all of the Backup Policies, the schedules for each policy, and the clients?  If not all in one report maybe separate ones?

thanks,

Ryan
2 REPLIES 2

rjrumfelt
Level 6
if you just want a long list of that information:

1.  ls /usr/openv/netbackup/db/class > class_list

2.   Execute the following script

for i in `cat class_list`
do
echo $i
/usr/openv/netbackup/bin/admincmd/bppllist -i -U > policy_info
done





Policy info will end up being a large list of policies, including their schedules clients, backup selections, and all other policy attributes.  Dont know what you could do with all this info in a long list, but there it is.

rjrumfelt
Level 6
I just realized I was in the backup reporter forum :(  I assume you would like the steps to do the above in VBR.  Unfortunately I dont use VBR.  The steps above will still work for NBU however.