View the backup list to verify if backups are taken as required.
- Open task scheduler and Task window in the Ops Center Automator GUI, and make sure the backup of the specified policy group is not running.
- Make sure the management table volume of the specified policy group is mounted on the server.
Example of using ‑BackupInfo parameter
PS C:\CRScripts> ./Get-MgmtTable.ps1 -PolicyGroupKey 'example' -BackupInfo | Format-Table -Property *Results:
attime attimeLocalTime alreadyExpired comment trigger numberOfExportVolumes expirationTime expirationTimeLocalTime splitMuNumber retentionDays ------ --------------- -------------- ------- ------- --------------------- -------------- ----------------------- ------------- ------------- 2022-07-01T00:00:00Z 2020-06-30T17:00:00-07:00 true comment Recurring 25 2022-07-04T00:00:00Z 2020-07-03T17:00:00-07:00 3 3 2022-07-01T12:00:00Z 2020-07-01T05:00:00-07:00 true comment On-demand 25 2022-07-04T12:00:00Z 2020-07-04T05:00:00-07:00 4 3 2022-07-02T00:00:00Z 2020-07-01T17:00:00-07:00 true comment Recurring 25 2022-07-05T00:00:00Z 2020-07-04T17:00:00-07:00 5 3 2022-07-02T12:00:00Z 2020-07-02T05:00:00-07:00 true comment On-demand 25 2022-08-05T12:00:00Z 2020-08-05T05:00:00-07:00 6 34
Example of using ‑Raw parameter
PS C:\CRScripts> ./Get-MgmtTable.ps1 -Raw -PolicyGroupKey 'example' | Format-Table -Property *Results:
expirationTime splitMuNumber _resyncMuNumber lock splitTime bcmCopyGroupName atTime comment trigger version mode storageId ldevId -------------- ------------- --------------- ---- --------- ---------------- ------ ------- ------- ------- ---- --------- ------ 2022-06-10T08:14:20Z 3 5 False 2021-06-10T08:14:20Z PREFIX.GRP.CGID 2022-06-10T08:00:00Z PAIR COUNT: 10000 02.00.00 UVM-MF 80000051305 8003 2022-06-10T08:14:20Z 4 3 False 2021-06-11T08:14:20Z PREFIX.GRP.CGID 2022-06-11T08:00:00Z PAIR COUNT: 10000 Recurring 02.00.00 UVM-MF 80000051305 8003 5 False PREFIX.GRP.CGID On-demand 02.00.00 UVM-MF 80000051305 8003 2022-06-10T08:14:20Z 3 5 False 2021-06-11T08:14:20Z PREFIX.GRP.CGID 2022-06-10T08:00:00Z PAIR COUNT: 10000 02.00.00 UVM-MF 80000051305 8004 2022-06-10T08:14:20Z 4 3 False 2021-06-11T08:14:20Z PREFIX.GRP.CGID 2022-06-11T08:00:00Z PAIR COUNT: 10000 Recurring 02.00.00 UVM-MF 80000051305 8004 5 False PREFIX.GRP.CGID On-demand 02.00.00 UVM-MF 80000051305 8004
Example of using ‑Raw parameter with ‑AtTime parameter
PS C:\CRScripts> ./Get-MgmtTable.ps1 -Raw -PolicyGroupKey 'example' -AtTime '2020-06-10T08:00:00Z' | Format-Table -Property *Results:
expirationTime splitMuNumber _resyncMuNumber lock splitTime bcmCopyGroupName atTime comment trigger version mode storageId ldevId -------------- ------------- --------------- ---- --------- ---------------- ------ ------- ------- ------- ---- --------- ------ 2022-06-10T08:14:20Z 3 5 False 2021-06-10T08:14:20Z PREFIX.GRP.CGID 2020-06-10T08:00:00Z PAIR COUNT: 10000 02.00.00 UVM-MF 80000051305 8003 2022-06-10T08:14:20Z 3 5 False 2021-06-11T08:14:20Z PREFIX.GRP.CGID 2020-06-10T08:00:00Z PAIR COUNT: 10000 Recurring 02.00.00 UVM-MF 80000051305 8004