OC Schema Document
OC Schema Document
Version
8.1.1
Contents
Contents
OpsCenter-specific Entities
Jobs
Monitoring-specific Tables
Reporting specific tables
Entites
How to use entity?
Views
How to use OpsCenter Views?
Policies
Clients
Special Notes
How to use timestamps in OpsCenter?
How to use lookup columns?
OpsCenter Database Tables
OpsCenter Database Views
OpsCenter Database Functions
OpsCenter Database Procedures
Index
OpsCenter-specific Entities | 1
OpsCenter-specific Entities
OpsCenter-specific Entities
Jobs
OpsCenter stores the NetBackup Jobs information in two sets of tables. One set of tables is used for the monitoring
use case and the other set of tables is used for the reporting use case. The association between these two sets of
tables is exactly the same as with other entities (Master Server, Policy, Client, and so on)
Monitoring-specific Tables
These tables store information of all jobs (Active, Queued, Waiting for Retry, Done, Missed, Incomplete, and
so on) for the past 30 days.
☛ domain_Job
☛ domain_ParentJob
☛ domain_ReconciledJob
☛ nb_Job
☛ nb_JobFiles
☛ nb_JobProcessAttribute
☛ nb_JobAttempt
☛ nb_JobAttemptLog
The following diagram explains the association between the tables specific to the monitoring use case.
2 | OpsCenter-specific Entities
The following diagram explains the association between the tables specific to the reporting use case.
OpsCenter-specific Entities | 3
Entites
This table stores information related to Entites.
☛ domain_Entity
☛ domain_MasterServer
☛ domain_MediaServer
☛ domain_EntityAlias
☛ domain_Client
☛ domain_Policy
The following diagram explains how the entites tables are associated.
2) When you want to get all alias names from the entiy name.
Example Query
SELECT alias FROM domain_EntityAlias WHERE entityId = (
SELECT id FROM domain_entity WHERE name='ccs-win-qe-5' AND (entityType & 4) <> 0
)
Note : We can find out entityTypeId from lookup_EntityType table (for Media Server entityType is 4)
4 | OpsCenter-specific Entities
Views
These tables store information related to OpsCenter Views [for more information on Views, refer to the OpsCenter
Administrators Guide]. The "view_Tree" and "view_TreeType" tables contain the OpsCenter View (name, type,
description, etc.) information. The "view_Node" and "view_NodeType" tables contain the Node (group, leaf of the
view) information. Other tables contain user access information related to views.
☛ view_Tree
☛ view_TreeType
☛ view_Node
☛ view_NodeType
☛ view_Group
☛ view_UserGroup
☛ view_TreeAccessGroup
☛ view_TreeAccessUser
☛ view_TreeLevelAlias
The following diagram explains the relationships implicit in the Views functionality in OpsCenter.
Simple report that shows all Jobs that are applicable to a specifics Master Server View.
SELECT
id as 'Job ID',
clientName as 'Client',
mediaServerName as 'Media Server',
throughPut as 'Throughput'
FROM domain_JobArchive
WHERE
masterServerId in (
SELECT entityid FROM view_Node WHERE treeid = ?
)
Note : We can find out tree id from below mentioned query for View('TEST' is OpsCenter View name in example)
SELECT id FROM view_Tree WHERE name = 'TEST'
OpsCenter-specific Entities | 5
Policies
This table stores information related to NetBackup Policies.
☛ domain_Policy
☛ domain_PolicyClient
☛ nb_Policy
☛ nb_PolicyCatalogDR
The following diagram explains how the policy tables are associated.
Clients
These tables store information related to NetBackup Clients.
☛ domain_Client
☛ nb_ClientOffline
The following diagram explains how the client tables are associated.
6 | OpsCenter-specific Entities
Special Notes
Simple report that shows Jobs that ran in the last 24 hours
SELECT
id as 'Job ID',
clientName as 'Client',
mediaServerName as 'Media Server',
statusCode as 'Exit Status',
UTCBigIntToNomTime(startTime) as 'Start Time',
UTCBigIntToNomTime(endTime) as 'End Time',
throughPut as 'Throughput'
FROM domain_JobArchive
WHERE
DATEDIFF(hour,UTCBigIntToNomTime(endTime), GETDATE()) <= 24;
Simple report that shows Jobs that ran in the last 24 hours; ordered by Job Type.
SELECT
domain_JobArchive.id as 'Job ID',
domain_JobArchive.clientName as 'Client',
domain_JobArchive.mediaServerName as 'Media Server',
domain_JobArchive.statusCode as 'Exit Status',
UTCBigIntToNomTime(domain_JobArchive.startTime) as 'Start Time',
UTCBigIntToNomTime(domain_JobArchive.endTime) as 'End Time',
lookup_JobType.name as 'Job Type',
domain_JobArchive.throughPut as 'Throughput'
FROM domain_JobArchive, lookup_JobType
WHERE
domain_JobArchive.type=lookup_JobType.id
AND DATEDIFF(hour,UTCBigIntToNomTime(domain_JobArchive.endTime), GETDATE()) <= 24
ORDER BY
lookup_JobType.name
OpsCenter Database Tables | 7
audit_Key
This table stores Audit key information
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId, tieInId, recordId audit_Record masterServerId, tieInId, recordId
typeId lookup_AuditAttributeType id
8 | OpsCenter Database Tables
audit_Record
This table stores information related to audit records
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
userIdentityId audit_UserIdentity id
masterServerId domain_MasterServer id
categoryId lookup_AuditCategory id
messageId lookup_AuditMessage id
operationId lookup_AuditOperation id
subCategoryId lookup_AuditSubCategory id
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
masterServerId, tieInId, recordId audit_Key masterServerId, tieInId, recordId
masterServerId, tieInId, recordId audit_RecordAttribute masterServerId, tieInId, recordId
OpsCenter Database Tables | 9
audit_RecordAttribute
This table stores information related to the audit record attributes
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId, tieInId, recordId audit_Record masterServerId, tieInId, recordId
typeId lookup_AuditAttributeType id
10 | OpsCenter Database Tables
audit_UserIdentity
This table stores information related to user identity
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
domainType lookup_DomainType id
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id audit_Record userIdentityId
OpsCenter Database Tables | 11
domain_Client
This table stores client information.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
id domain_Entity id
masterServerId domain_MasterServer id
osType lookup_OS id
product lookup_Product id
12 | OpsCenter Database Tables
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
masterServerId, name domain_FileSystem masterServerId, clientName
masterServerId, name domain_Job masterServerId, clientName
masterServerId, name domain_JobArchive masterServerId, clientName
masterServerId, name domain_Log masterServerId, clientName
masterServerId, name domain_PolicyClient masterServerId, clientName
masterServerId, name domain_ScheduledJob masterServerId, clientName
masterServerId, name domain_SkippedFileArchive masterServerId, clientName
masterServerId, name nb_ClientOffline masterServerId, clientName
OpsCenter Database Tables | 13
domain_ClientImageCollectionLevel
This table stores client image collection level information.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId domain_MasterServer id
oldImageCollectionLevel lookup_CollectionLevel id
14 | OpsCenter Database Tables
domain_DataClassification
This table holds data for dataclassification.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId domain_MasterServer id
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
masterServerId, name domain_Image masterServerId, dataClassificationName
masterServerId, name domain_Policy masterServerId, dataClassificationId
OpsCenter Database Tables | 15
domain_DiskPool
This table stores disk pool attributes used by reporting in OpsCenter.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId domain_MasterServer id
status lookup_DiskPoolStatus id
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
masterServerId, name, masterServerId, name,
domain_DiskPoolHistory
storageServerName, serverType storageServerName, serverType
masterServerId, name, masterServerId, name,
nb_DiskPool
storageServerName, serverType storageServerName, serverType
16 | OpsCenter Database Tables
domain_DiskPoolHistory
This table stores the attributes for disk pool historical data.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId, name, masterServerId, name,
domain_DiskPool
storageServerName, serverType storageServerName, serverType
OpsCenter Database Tables | 17
domain_Entity
This table holds information of all the domain entities in OpsCenter.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
entityType lookup_EntityType id
productType lookup_Product id
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id domain_Client id
id domain_EntityAlias entityId
id domain_FileSystem id
id domain_MasterServer id
id domain_MediaServer id
id domain_Policy entityId
id managedObject_EntityAttributeValue entityId
id view_Node entityId
18 | OpsCenter Database Tables
domain_EntityAlias
This table holds information of the aliases in OpsCenter.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
entityId domain_Entity id
masterServerId domain_MasterServer id
OpsCenter Database Tables | 19
domain_FileSystem
This table holds information of the File System.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId, clientName domain_Client masterServerId, name
id domain_Entity id
20 | OpsCenter Database Tables
domain_Image
This table stores information about Backup Images.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId, dataClassificationName domain_DataClassification masterServerId, name
masterServerId domain_MasterServer id
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
masterServerId, id domain_ImageCopy masterServerId, imageId
masterServerId, id domain_JobImage masterServerId, imageId
masterServerId, id domain_SLPImage masterServerId, id
22 | OpsCenter Database Tables
domain_ImageCopy
This table contains metadata of the image copied.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId, imageId domain_Image masterServerId, id
masterServerId, mediaServerName domain_MediaServer masterServerId, name
masterServerId, retentionLevel nb_RetentionLevel masterServerId, id
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
masterServerId, imageId, id domain_ImageCopyFormat masterServerId, imageId, copyId
masterServerId, imageId, id domain_ImageFragment masterServerId, imageId, copyId
masterServerId, imageId, id domain_SLPImageCopy masterServerId, imageId, id
OpsCenter Database Tables | 23
domain_ImageCopyFormat
This table stores data format of the Image Copy
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId, imageId, copyId domain_ImageCopy masterServerId, imageId, id
dataFormat lookup_CopyFormat id
24 | OpsCenter Database Tables
domain_ImageFragment
This table keeps data about the fragments of an image.
Primary Tables
OpsCenter Database Tables | 25
domain_Job
This table stores information pertaining to all jobs as seen in NetBackup Activity Monitor for a default of 30 days.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId, clientName domain_Client masterServerId, name
masterServerId domain_MasterServer id
masterServerId, mediaServerName domain_MediaServer masterServerId, name
masterServerId, srcMediaServerName domain_MediaServer masterServerId, name
masterServerId, policyName, masterServerId, name,
domain_Policy
policyDomainName, policyVersionNo policyDomainName, versionNo
masterServerId, policyName, masterServerId, policyName,
policyDomainName, policyVersionNo, domain_Schedule policyDomainName, policyVersionNo,
scheduleName name
backupType lookup_BackupType id
state lookup_JobState id
statusCode lookup_JobStatusCode id
subType lookup_JobSubType id
type lookup_JobType id
policyType lookup_PolicyType id
scheduleType lookup_ScheduleType id
28 | OpsCenter Database Tables
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
masterServerId, clientName, id domain_ParentJob masterServerId, clientName, id
masterServerId, clientName, id domain_ReconciledJob masterServerId, clientName, id
masterServerId, clientName, id nb_Job masterServerId, clientName, id
masterServerId, clientName, id nb_JobFiles masterserverId, clientName, jobId
OpsCenter Database Tables | 29
domain_JobArchive
This table stores information pertaining to only completed jobs as seen in NetBackup Activity Monitor for a default of 420
days.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId, clientName domain_Client masterServerId, name
masterServerId domain_MasterServer id
masterServerId, jobMediaServerName domain_MediaServer masterServerId, name
masterServerId, policyName, masterServerId, name,
domain_Policy
policyDomainName, policyVersionNo policyDomainName, versionNo
masterServerId, policyName, masterServerId, policyName,
policyDomainName, policyVersionNo, domain_Schedule policyDomainName, policyVersionNo,
scheduleName name
backupType lookup_BackupType id
state lookup_JobState id
OpsCenter Database Tables | 31
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
masterServerId, clientName, id domain_JobImage masterServerId, clientName, jobId
masterServerId, clientName, id domain_Log masterServerId, clientName, jobId
masterServerId, clientName, id domain_ReconciledJobArchive masterServerId, clientName, id
masterServerId, clientName, id domain_ScheduledJob masterServerId, clientName, jobId
masterServerId, clientName, id domain_SkippedFileArchive masterServerId, clientName, jobId
masterServerId, clientName, id nb_JobArchive masterServerId, clientName, id
masterServerId, clientName, id nb_JobDbInstanceArchive masterserverId, clientName, jobId
masterServerId, clientName, id nb_JobFilesArchive masterserverId, clientName, jobId
32 | OpsCenter Database Tables
domain_JobImage
Internal table to hold link between Job and Image.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId, imageId domain_Image masterServerId, id
masterServerId, clientName, jobId domain_JobArchive masterServerId, clientName, id
OpsCenter Database Tables | 33
domain_Log
This table stores log messages from NetBackup error catalog for a default of 3 days.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId, clientName domain_Client masterServerId, name
masterServerId, clientName, jobId domain_JobArchive masterServerId, clientName, id
masterServerId domain_MasterServer id
masterServerId, mediaServerName domain_MediaServer masterServerId, name
34 | OpsCenter Database Tables
domain_MasterServer
Stores the list of Master Servers configured for this OpsCenter.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
id domain_Entity id
status lookup_MasterServerStatus id
osType lookup_OS id
product lookup_Product id
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id audit_Record masterServerId
id domain_Client masterServerId
id domain_ClientImageCollectionLevel masterServerId
id domain_DataClassification masterServerId
id domain_DiskPool masterServerId
id domain_EntityAlias masterServerId
id domain_Image masterServerId
id domain_Job masterServerId
id domain_JobArchive masterServerId
id domain_Log masterServerId
id domain_Media masterServerId
id domain_MediaServer masterServerId
id domain_Policy masterServerId
id domain_SkippedFileArchive masterServerId
id domain_SLPImage masterServerId
id domain_TapeDrive masterServerId
id domain_TapeLibrary masterServerId
id nb_CatalogBackup masterServerId
id nb_DeviceUsageArchive masterServerId
id nb_DiskPool masterServerId
id nb_FatClient masterServerId
id nb_FatServer masterServerId
id nb_Media masterServerId
id nb_RetentionLevel masterServerId
id nb_Robot masterServerId
36 | OpsCenter Database Tables
domain_Media
This table stores media attributes used by reporting in OpsCenter.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId domain_MasterServer id
masterServerId, mediaServerName domain_MediaServer masterServerId, name
masterServerId, libraryId domain_TapeLibrary masterServerId, id
role lookup_MediaRole id
status lookup_MediaStatus id
type lookup_MediaType id
libraryType lookup_RobotType id
masterServerId, retentionLevel nb_RetentionLevel masterServerId, id
masterServerId, volumeGroupName nb_VolumeGroup masterServerId, name
masterServerId, volumePoolName nb_VolumePool masterServerId, name
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
masterServerId, id domain_MediaHistory masterServerId, id
masterServerId, id nb_Media masterServerId, id
40 | OpsCenter Database Tables
domain_MediaHistory
This table stores the attributes for media historical data.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId, id domain_Media masterServerId, id
masterServerId, libraryId domain_TapeLibrary masterServerId, id
status lookup_MediaStatus id
masterServerId, retentionLevel nb_RetentionLevel masterServerId, id
42 | OpsCenter Database Tables
domain_MediaServer
This table stores the attributes of MediaServer.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
id domain_Entity id
masterServerId domain_MasterServer id
osType lookup_OS id
product lookup_Product id
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
masterServerId, name domain_ImageCopy masterServerId, mediaServerName
masterServerId, name domain_Job masterServerId, mediaServerName
masterServerId, name domain_Job masterServerId, srcMediaServerName
masterServerId, name domain_JobArchive masterServerId, jobMediaServerName
masterServerId, name domain_Log masterServerId, mediaServerName
masterServerId, name domain_Media masterServerId, mediaServerName
masterServerId, name domain_TapeDriveMap masterServerId, mediaServerName
masterServerId, name domain_TapeLibrary masterServerId, mediaServerName
masterServerId, name nb_JobAttempt masterserverId, srcMediaServerName
masterServerId, name nb_JobAttempt masterserverId, destMediaServerName
masterServerId, name nb_JobAttemptArchive masterserverId, destMediaServerName
masterServerId, name nb_JobAttemptArchive masterserverId, srcMediaServerName
masterServerId, name nb_StorageUnit masterServerId, host
44 | OpsCenter Database Tables
domain_ParentJob
This table stores information for parent jobs of a multistream backups.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId, clientName, id domain_Job masterServerId, clientName, id
OpsCenter Database Tables | 45
domain_Policy
This table stores information about policy attributes.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId, dataClassificationId domain_DataClassification masterServerId, name
entityId domain_Entity id
masterServerId domain_MasterServer id
status lookup_PolicyStatus id
type lookup_PolicyType id
Foreign Tables
46 | OpsCenter Database Tables
domain_PolicyClient
This table stores information about a policy and the clients it contains.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId, clientName domain_Client masterServerId, name
masterServerId, policyName, masterServerId, name,
domain_Policy
policyDomainName, policyVersionNo policyDomainName, versionNo
48 | OpsCenter Database Tables
domain_ReconciledJob
This table holds information for jobs that have been reconciled (An option that prevents the jobs that failed, from being billed.
These jobs may have failed due to reasons like user terminating a job, host cannot be reached and so on. )
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId, clientName, id domain_Job masterServerId, clientName, id
reconciliationType lookup_ReconciledJobType id
OpsCenter Database Tables | 49
domain_ReconciledJobArchive
This table holds information for jobs which has been reconciled (a option that prevents the jobs that failed from being billed.
These jobs fail due to reasons like user terminating a job, host cannot be reached, and so on. )
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId, clientName, id domain_JobArchive masterServerId, clientName, id
reconciliationType lookup_ReconciledJobType id
50 | OpsCenter Database Tables
domain_Schedule
This table stores information about backup schedule attributes.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId, policyName, masterServerId, name,
domain_Policy
policyDomainName, policyVersionNo policyDomainName, versionNo
type lookup_ScheduleType id
OpsCenter Database Tables | 51
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
masterServerId, policyName, masterServerId, policyName,
policyDomainName, policyVersionNo, domain_Job policyDomainName, policyVersionNo,
name scheduleName
masterServerId, policyName, masterServerId, policyName,
policyDomainName, policyVersionNo, domain_JobArchive policyDomainName, policyVersionNo,
name scheduleName
masterServerId, policyName, masterServerId, policyName,
policyDomainName, policyVersionNo, domain_ScheduleCalendar policyDomainName, policyVersionNo,
name scheduleName
masterServerId, policyName, masterServerId, policyName,
policyDomainName, policyVersionNo, domain_ScheduledJob policyDomainName, policyVersionNo,
name scheduleName
masterServerId, policyName, masterServerId, policyName,
policyDomainName, policyVersionNo, domain_ScheduleWindow policyDomainName, policyVersionNo,
name scheduleName
52 | OpsCenter Database Tables
domain_ScheduleCalendar
This table stores information about schedule based on a calendar.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId, policyName, masterServerId, policyName,
policyDomainName, policyVersionNo, domain_Schedule policyDomainName, policyVersionNo,
scheduleName name
OpsCenter Database Tables | 53
domain_ScheduledJob
This table stores information for job scheduling (work list) information as generated by PEM. This table only holds the first
work list generated for Policy+Client+Schedule combination, information related to subsequent re-scheduling by PEM is not
stored.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId, clientName domain_Client masterServerId, name
masterServerId, clientName, jobId domain_JobArchive masterServerId, clientName, id
masterServerId, policyName, masterServerId, name,
domain_Policy
policyDomainName, policyVersionNo policyDomainName, versionNo
masterServerId, policyName, masterServerId, policyName,
policyDomainName, policyVersionNo, domain_Schedule policyDomainName, policyVersionNo,
scheduleName name
executionType lookup_BackupType id
54 | OpsCenter Database Tables
domain_ScheduleWindow
This table contains the schedule window attributes.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId, policyName, masterServerId, policyName,
policyDomainName, policyVersionNo, domain_Schedule policyDomainName, policyVersionNo,
scheduleName name
OpsCenter Database Tables | 55
domain_SkippedFileArchive
This table contains the information of files being skipped in the backup.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId, clientName domain_Client masterServerId, name
masterServerId, clientName, jobId domain_JobArchive masterServerId, clientName, id
masterServerId domain_MasterServer id
56 | OpsCenter Database Tables
domain_SLPImage
This table holds data for storage lifecycle policy specific image attributes.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId, id domain_Image masterServerId, id
masterServerId domain_MasterServer id
storageServiceState lookup_SLPState id
Foreign Tables
OpsCenter Database Tables | 57
domain_SLPImageCopy
This table holds data for copies created using storage lifecycle policy.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId, imageId, id domain_ImageCopy masterServerId, imageId, id
masterServerId, imageId domain_SLPImage masterServerId, id
copyState lookup_CopyState id
expirationType lookup_StorageServiceRetentionType id
copyType lookup_StorageServiceUsageType id
OpsCenter Database Tables | 59
domain_TapeDrive
This table stores NetBackup tape drive attributes used by OpsCenter.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId domain_MasterServer id
masterServerId, libraryId domain_TapeLibrary masterServerId, id
type lookup_DriveType id
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
masterServerId, name domain_TapeDriveHistory masterServerId, name
masterServerId, name domain_TapeDriveMap masterServerId, driveName
masterServerId, name nb_TapeDrive masterServerId, name
60 | OpsCenter Database Tables
domain_TapeDriveHistory
This table stores NetBackup tape drive attributes used by OpsCenter.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId, name domain_TapeDrive masterServerId, name
type lookup_DriveType id
OpsCenter Database Tables | 61
domain_TapeDriveMap
This table stores the mapping of the tape drive.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId, mediaServerName domain_MediaServer masterServerId, name
masterServerId, driveName domain_TapeDrive masterServerId, name
62 | OpsCenter Database Tables
domain_TapeLibrary
This table contains information about tape library
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId domain_MasterServer id
masterServerId, mediaServerName domain_MediaServer masterServerId, name
type lookup_RobotType id
slotCountStatus lookup_TapeLibrarySlotCountStatus id
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
masterServerId, id domain_Media masterServerId, libraryId
masterServerId, id domain_MediaHistory masterServerId, libraryId
masterServerId, id domain_TapeDrive masterServerId, libraryId
masterServerId, id nb_Robot masterServerId, robotNumber
OpsCenter Database Tables | 63
HistoricalData
This table is used for generating drive throughput and drive utilization report
lookup_AuditAttribute
Reference table for audit attributes
Translated Values
id Translated Value
500 Policy Type
501 Follow NFS Mounts
502 Client Compress
503 Client Encrypt
504 Max Jobs/Policy
505 Residence
506 Volume Pool
507 Max Frag Size
508 Policy State
509 Collect TIR info
510 Block Level Incremental
511 Keyword
512 Ext Security Info
513 File Restore Raw
514 Mult. Data Stream
515 Backup Copy Method
516 Perform Snapshot Backup
517 Effective Date
518 Checkpoint Restart
519 Enable Instant Recovery
520 Perform Offhost Backup
521 Use Alternate Client
522 Use Data Mover
523 Data Mover Type
524 Alternate Client Name
525 Snapshot Method
526 Snapshot Method Arguments
527 Collect BMR Info
528 Server Group
529 Data Classification
530 Is residence SLP?
531 Granular Restore
OpsCenter Database Tables | 65
id Translated Value
532 Virtual Machine Type
533 HyperV Server
534 Proxy Client
535 Checkpoint Interval
536 Fail on Error
537 Disaster Recovery
538 Job Sub Type
539 Policy Generation
540 Client
541 Hardware
542 OS
543 Schedule
544 Schedule Type
545 Maximum MPX
546 Frequency
547 Retention Level
548 Unused Window
549 BackupWindow (Sun)
550 BackupWindow (Mon)
551 BackupWindow (Tue)
552 BackupWindow (Wed)
553 BackupWindow (Thu)
554 BackupWindow (Fri)
555 BackupWindow (Sat)
556 Incr Type
557 Alt Read Host
558 Synthetic
559 PFI Recovery
560 Stage Priority
561 Calendar Type
562 Backup Selection
563 Email Address
564 Disk Path
565 User Name
566 Critical Policy
567 Include Dates
568 Exclude Dates
569 Monthly (Day of Month)
570 Monthly (Day of Week)
571 Cross Mount Points
572 Policy Priority
66 | OpsCenter Database Tables
id Translated Value
573 Ignore Client Direct
574 Exchange Source
575 Exchange 2010 Preferred Server
576 IMAGE_ID
577 RESTOREFILESLIST
578 AUDIT
579 AUDIT_RETENTION_PERIOD
580 Application Discovery
581 Discovery Lifetime
583 Schedule Indexing
584 Disable Meta Indexing
585 Index server name
586 Enable Metadata Indexing
587 Use Fast Backup
590 Stu Key
591 Storage Unit Name
592 Stu Type
593 Media Server Key
594 Media Server
595 Robot Type
596 Robot Number
597 Density
598 Drive Group Name
599 Concurrent Jobs
600 Active Jobs
601 Absolute Path
602 Initial MPX
603 On Demand
604 Max MPX
605 Max Fragment Size
606 NDMP Attach Host key
607 NDMP Attach Host
608 Stu Flags
609 Stu sub Type
610 Throttle
611 Total capacity
612 Free space
613 High water mark
614 Low water mark
615 Potential Free space
616 Last Selected time
OpsCenter Database Tables | 67
id Translated Value
617 Ok On Root
618 Created Time
619 Last Modified Time
620 Data Movers
621 Data Mover Host Name
622 STU Path
623 Master Server Key
624 Master Server
625 Server Type
626 Storage Type
627 State
628 StorageServerFlags
629 DiskGroup
630 DiskVolume
631 DiskGroup Type
632 Total Physical capacity
633 Used Space
634 Used Physical Space
635 User Tag
636 Max IO Stream
637 StorageServerExtFlags
638 Description
639 Scratch Pool
640 Catalog Backup Pool
641 Max Partially Full
642 Storage Server
643 Pool Type
644 Pool Number
645 Host Name
646 Origin HostName
647 Upgrade Conflicts
648 Stage Data
649 Block Sharing
650 File System Export
651 Transfer Throttle
652 Media Server(s)
653 Job State
654 Patchwork
655 Visible
656 OpenStorage
657 RovingVolumes
68 | OpsCenter Database Tables
id Translated Value
658 SingleStorageServer
659 CopyExtents
660 AdminUp
661 InternalUp
662 SpanImages
663 BasicStaging
664 LifeCycle
665 CapacityMgmt
666 FragmentImages
667 CatalogBackup
668 Cpr
669 RandomWrites
670 FT-Transfer
671 CapacityManagedRetention
672 CapacityManagedJobQueuing
673 OptimizedImage
674 MetaData
675 DiskGroups
676 ActiveDiskGroups
677 ActiveServers
678 PrefRestore
679 ReqRestore
680 ReqDuplicate
681 OST direct copy to tape
682 MetaData
683 QueueOnDown
684 DiskGroupFlags
685 State
686 State
687 On-hold image list
689 Primary
690 Snapshot
691 Mirror
692 Replication Source
693 Replication Target
694 Independent
705 Expiration Time
906 Token Name
907 Host name
908 Host ID
909 Maximum Uses Allowed
OpsCenter Database Tables | 69
id Translated Value
910 Token Used Count
911 Activation Time
912 Expiration Time
916 Token Type
1010 Host name
1011 Host ID
1012 Serial Number
1013 Not Valid Before
1014 Not Valid After
1015 Creation Time
1016 State
1017 Revocation Reason
1018 Token Type
1102 Accessed from
1103 Origin Host
1104 Logged in to Host
1105 Host Type
1106 Status
1107 Peer IP Validation
1108 Host Type
1202 Certificate Deployment Level
1203 Reissue Deployment Level
1204 Allow Insecure Back Level Host
1205 Alias Auto Add
1317 isApproved
1318 isAddedManually
1319 isShared
1320 isConflicting
1321 isApproved
1322 isAddedManually
1323 isShared
1324 isConflicting
1325 isApproved
1326 isAddedManually
1327 isShared
1328 isConflicting
1330 comment
1331 origin
1332 Allow Auto Reissue Certificate
1333 Allow Auto Reissue Cert Validity
1335 Host Name
70 | OpsCenter Database Tables
id Translated Value
1336 Host Id
1506 Source Host
1507 Destination Host
1508 Source Certificate Authority
1509 Destination Certificate Authority
1511 Source Certificate Serial Number
1512 Destination Certificate Serial Number
1515 Beginning Event Time
1516 Ending Event Time
1517 Event Count
OpsCenter Database Tables | 71
lookup_AuditAttributeType
Reference table for audit attribute types
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id audit_Key typeId
id audit_RecordAttribute typeId
Translated Values
id Translated Value
0 Na
1 String
2 Int 32
3 UInt 32
4 Int 64
5 UInt 64
6 Timestamp
7 String Seq
8 Int 32 Seq
9 UInt 32 Seq
10 Int 64 Seq
11 UInt 64 Seq
12 Timestamp Seq
72 | OpsCenter Database Tables
lookup_AuditCategory
Reference table for audit category
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id audit_Record categoryId
Translated Values
id Translated Value
1 Policy
2 Audit Configuration
3 Job
4 Audit Service
5 Storage Unit
6 Pool
7 Storage Server
8 bpconf
10 Hold
11 User Management
12 Authorization Failure
13 Catalog
14 Token
15 Certificate
16 Login
17 Sec_Config
18 Host
19 Connection
OpsCenter Database Tables | 73
lookup_AuditMessage
Reference table for audit messages
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id audit_Record messageId
Translated Values
id Translated Value
1 Policy "{0}" was created
2 Policy "{0}" was deleted
3 Attributes of Policy "{0}" were modified
4 Policy "{0}" was activated
5 Policy "{0}" was deactivated
6 Schedule "{0}" was added to Policy "{1}"
7 Schedule "{0}" was deleted from Policy "{1}"
8 Settings of Schedule "{0}" of Policy "{1}" were modified
9 Client "{0}" was added to Policy "{1}"
10 Client "{0}" was deleted from Policy "{1}"
11 Settings of Client "{0}" of Policy "{1}" were modified
12 Include list settings of Policy "{0}" were modified
13 Disaster recovery settings of Policy "{0}" were modified
Calendar settings of Schedule "{0}" of Policy "{1}" were
14 modified
15 Audit setting(s) of master server "{0}" were modified
16 Restore job ("{0}") for client "{1}" was initiated
17 Policy "{0}" was saved but no changes were detected
18 The nbaudit service on master server "{0}" was started
19 The nbaudit service on master server "{0}" was stopped
20 Tape Storage Unit "{0}" was created
21 Tape Storage Unit "{0}" was deleted
22 Attributes of Tape Storage Unit "{0}" were modified
23 Disk Storage Unit "{0}" was created
24 Disk Storage Unit "{0}" was deleted
25 Attributes of Disk Storage Unit "{0}" were modified
26 Storage Server "{0}" of type "{1}" was created
74 | OpsCenter Database Tables
id Translated Value
27 Storage Server "{0}" of type "{1}" was deleted
28 Storage Server "{0}" of type "{1}" was updated
29 Configuration of Storage Server "{0}" was updated
30 Disk Pool "{0}" was created
31 Disk Pool "{0}" was deleted
32 Disk Pool "{0}" was updated
33 Storage Server "{0}" was added to Disk Pool "{1}"
34 Storage Server "{0}" was deleted from Disk Pool "{1}"
35 Disk Pool "{0}" was merged to Disk Pool "{1}"
36 State of Disk Pool "{0}" was updated
37 State of Disk Volume "{0}" of Disk Group "{1}" was updated
38 Disk Volume "{0}" from Disk Group "{1}" was deleted
39 Volume Pool "{0}" was created
40 Volume Pool "{0}" was updated
41 Volume Pool "{0}" was deleted
42 Audit records for Master Server "{0}" were exported
43 Audit records for Master Server "{0}" were imported
44 Properties of host "{0}" were modified
51 Job "{0}" was suspended
52 Job "{0}" was resumed
53 Job "{0}" was canceled
54 Job "{0}" was deleted
55 Hold "{0}" was created
56 Hold "{0}" was deleted
57 Hold "{0}" was updated
58 Restore job ("{0}") for client "{1}" to client "{2}" was initiated
697 Job "{0}" was restarted
NetBackup administrator privileges Granted to user "{0}" of
698 "{1}" of domain type "{2}"
NetBackup administrator privileges Revoked from user "{0}"
699 of "{1}" of domain type "{2}"
701 Configuration setting(s) of master server "{0}" were added
702 Configuration setting(s) of master server "{0}" were modified
703 Configuration setting(s) of master server "{0}" were deleted
704 Expiration time of Catalog Image "{0}" was modified
Expiration time of copy number "{0}" for Catalog Image "{1}"
706 was modified
Expiration time of Catalog Image(s) on media "{0}" has been
707 set to "{1}"
Expiration time of Catalog Image(s) on storage server "{0}"
708 has been set to "{1}"
Authorization failure, user tried to get POLICY schedule
800 information
OpsCenter Database Tables | 75
id Translated Value
Authorization failure, user tried to modify POLICY schedule
801 information
802 Authorization failure, user tried to create POLICY
803 Authorization failure, user tried to delete POLICY
Authorization failure, user tried to get POLICY client(s)
804 information
Authorization failure, user tried to modify POLICY client(s)
805 information
806 Authorization failure, user tried to get POLICY information
807 Authorization failure, user tried to modify POLICY information
Authorization failure, user tried to get POLICY backup
808 selection information
Authorization failure, user tried to modify POLICY backup
809 selection
Authorization failure, user tried to get catalog POLICY
810 information
Authorization failure, user tried to modify catalog POLICY
811 information
812 Authorization failure, user tried to perform POLICY operation
813 Authorization failure, user tried to perform JOB operation
Authorization failure, user tried to get Storage Unit(s)
814 information
815 Authorization failure, user tried to list Storage Unit(s)
816 Authorization failure, user tried to create Storage Unit(s)
Authorization failure, user tried to modify Storage Unit(s)
817 attributes
818 Authorization failure, user tried to delete Storage Unit(s)
Authorization failure, user tried to list EMM configuration
819 setting(s)
Authorization failure, user tried to modify EMM configuration
820 setting(s)
Authorization failure, user tried to grant NetBackup
821 administrator privileges to a user
Authorization failure, user tried to revoke NetBackup
822 administrator privileges from a user
Authorization failure, user tried to lookup a user in NetBackup
823 administrators list
Authorization failure, user tried to get list of NetBackup
824 administrator users
825 Authorization failed as user tried to get Disk Pool information
Authorization failed as user tried to set Disk Pool related
826 global attribute
Authorization failed as user tried to update Disk Pool
827 information
828 Authorization failed as user tried to modify state of Disk Pool
829 Authorization failed as user tried to create Disk Pool
830 Authorization failed as user tried to delete Disk Pool
831 Authorization failed as user tried to merge Disk Pools
832 Authorization failed as user tried to import Disk Pool
76 | OpsCenter Database Tables
id Translated Value
Authorization failed as user tried to get Storage Server
833 information
Authorization failed as user tried to add Storage Server to a
834 Disk Pool
Authorization failed as user tried to remove Storage Server
835 from Disk Pool
836 Authorization failed as user tried to delete Storage Server
Authorization failed as user tried to update Storage Server
837 configuration
838 Authorization failed as user tried to create Storage Server
Authorization failed as user tried to get Disk Volume
839 information
Authorization failed as user tried to update Disk Volume
840 information
Authorization failed as user tried to update state of Disk
841 Volume
842 Authorization failed as user tried to create Disk Volume
843 Authorization failed as user tried to delete Disk Volume
844 Authorization failed as user tried to mount Disk Volume
845 Authorization failed as user tried to unmount Disk Volume
Authorization failed as user tried to remove target SLP
846 Volumes
Authorization failed as user tried to import SLPs for Source
847 Volume List
Authorization failure, user tried to extract catalog image(s)
848 information
849 Authorization failure, user tried to list catalog image(s)
850 Authorization failure, user tried to verify catalog image(s)
Authorization failure, user tried to modify catalog image
851 expiration
Authorization failure, user tried to get the aggregated space
852 for a specified disk type
Authorization failure, user tried to perform bpstsinfo -
853 recalcCap / -resyncREM CLI operation
Authorization failed, user tried to make changes to the Host
854 Properties attributes
Authorization failed, user tried to get information about the
855 Host Properties attributes
Authorization failed, user tried to make changes to the global
856 Host Properties attributes
Authorization failed, user tried to get information about the
857 global Host Properties attributes
901 Token {0} was successfully created
902 Token {0} was successfully deleted
903 Token {0} was successfully updated
904 Token clean-up was successful, {0} token(s) deleted
Token {0} to deploy security certificate for master server is
913 successfully created during installation
OpsCenter Database Tables | 77
id Translated Value
Token {0} was deleted during clean-up operation as the
914 usage count had reached the allowed count
Token {0} was deleted during the clean-up operation as
915 expiration time has reached for this token
Certificate was successfully issued for host {0} using token
1001 {1}
1002 Certificate was successfully issued for host {0}
Certificate with serial number {0} was revoked as certificate
1003 with hostID {1} was revoked
1004 Certificate was successfully revoked for host {0}
1005 Certificate was successfully renewed for host {0}
1006 Certificate request for host {0} was rejected
1007 Certificate renew request for host {0} was rejected
1008 Certificate revoke request for host {0} was rejected
1009 Certificate revoke request for serial number {0} was rejected
Certificate revoke request was rejected for unknown host id
1020 {0}
Certificate renew request for host {0} was rejected as this
1021 hostname does not match with existing hostname {1}
Certificate with serial number {0} was revoked as certificate
1022 with serial number {1} was revoked
Certificate with serial number {0} was revoked as new
1023 certificate was issued using valid reissue token
Certificate request for host {0} was rejected as reissue token
1024 was not used
Certificate request for host {0} was rejected as certificate
1025 deployment level was very high
Certificate request for host {0} was rejected as invalid token
1026 {1} was used
Certificate request for host {0} was rejected as token {1} was
1027 not issued for requesting host
Certificate reissue request for host {0} rejected as token {1} is
1028 not a reissue token
Certificate renew request for host {0} was rejected as
1029 certificate with serial number {1} does not exist
Certificate renew request for host {0} was rejected as
1030 certificate with serial number {1} is not active
Certificate revoke request was rejected as certificate with
1031 serial number {0} does not exist
Certificate request for host {0} was rejected as token with
1032 specified value does not exist
Certificate request for host {0} was rejected as none of its
1033 host name aliases matches the peer IP address {1}
Certificate request for host {0} was rejected as host name is
1034 not known to the master server
Mapping for hostname {0} with hostID {1} has been marked
1035 decoupled
Certificate deployment request for host {0} is rejected as the
1037 allow auto reissue certificate parameter for the host is not set.
78 | OpsCenter Database Tables
id Translated Value
Certificate request for host {0} is rejected as the allow auto
1038 reissue certificate parameter is set for more than one host
with the same host mapping {0}
1039 Unable to update the host information for host {0}
1041 Generation of certificate revocation list failed for host {0}
1042 Generation of certificate revocation list successful for host {0}
The certificate is successfully renewed with the new host
1043 name {0}
Certificate renew request with the host name {0} was rejected
1044 because either the host ID to host name mapping was not
found or it was not approved
Certificate precheck request for host {0} is complete.
1045 Outcome: Reissue token is needed
Certificate precheck request for host {0} is complete.
1046 Outcome: Certificate deployment level is very high
Certificate precheck request for host {0} is complete.
1047 Outcome: None of the host name aliases matches the peer
IP address {1}
Certificate precheck request for host {0} is complete.
1048 Outcome: The host name is not known to the master server
Certificate precheck request for host {0} is complete.
1049 Outcome: Either the host ID to host name mapping is not
found or it is not approved
1050 Certificate precheck request for host {0} is complete.
Certificate with serial number {0} was revoked as new
1051 certificate was issued using automatic certificate deployment
operation.
1100 User {0} was successfully authenticated with host {1}
Access to "{1}" was denied for user "{0}" because of invalid
1101 user credentials
1109 User has successfully retrieved front end data size
Access to "{1}" was denied for user "{0}" because the user
1110 account was locked
1201 Security configuration is updated
1206 Security credential for "{0}" is updated
1207 The passphrase for disaster recovery package is modified
Create operation for host telemetry with UUID {0} was
1301 triggered from unauthorized host with UUID {1}
UPDATE operation for host with UUID {0} was triggered from
1302 unauthorized host with UUID {1}
GET operation for host with UUID {0} was triggered from
1303 unauthorized host with UUID {1}
GET operation for host with name {0} was triggered from
1304 unauthorized host with UUID {1}
GET operation for all hosts was triggered from unauthorized
1305 host with UUID {0}
RESET operation for host with hostID {0} was successfully
1306 completed
1307 Host name {0} is successfully mapped to host ID {1}.
1309 Mapping between {0} and host ID {1} is successfully updated.
OpsCenter Database Tables | 79
id Translated Value
Mapping {0} that is associated with host ID {1} is successfully
1310 deleted.
1329 1329
The update operation for host {0}{1}{2} is not successful
1334 because of authorization failure.
1337 Host {0} is successfully created.
1338 Host {0} cannot be created.
1401 User {0} logged on successfully
1402 User {0} login failed due to invalid credentials
User {0} does not have permissions to call the {1} API using
1403 {2} method
1404 User {0} does not have permissions to login
Login failed as host with UUID {0} used an invalid or revoked
1405 certificate
Host {0} is trying to connect to host {1}. The connection is
1501 dropped, because the host ID-to-host name mapping {2} is
not yet approved.
Host {0} is trying to connect to host {1}. The connection is
1502 dropped, because insecure communication with host {1} is
not allowed.
Host {0} is trying to connect to host {1}. The connection is
1503 dropped, because the host {1} now appears to be NetBackup
8.0 or earlier.
Host {0} is trying to connect to host {1}. The connection is
1504 dropped, because a conflict in host ID-to-hostname mapping
is detected. The conflicting host IDs are as follows: {2}
Host {0} is trying to connect to host {1}. The connection is
1505 dropped, because connection type could not be determined.
The received mapped hostname is as follows: {2}
Host {0} is trying to connect to host {1}. The connection is
1513 dropped, because a SSL handshake error was detected.
Host {0} is trying to connect to host {1}. The connection is
1514 dropped, because there was a problem with the certificate
validation.
80 | OpsCenter Database Tables
lookup_AuditOperation
Reference table for audit operations
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id audit_Record operationId
Translated Values
id Translated Value
1 Create
2 Modify
3 Delete
4 Start
5 Stop
6 Cancel
7 Resume
8 Access
OpsCenter Database Tables | 81
lookup_AuditSubCategory
Reference table for audit sub-category
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id audit_Record subCategoryId
Translated Values
id Translated Value
0 General
1 Schedule
2 Client
3 File List
4 Disaster Recovery
82 | OpsCenter Database Tables
lookup_BackupCopyMethod
Reference table for Backup Copy Method like Media Server Copy, Frozen Image Copy and so on
Translated Values
id Translated Value
0 Standard
1 Third-Party-Copy
2 Media-Server-Copy
3 Network-Attached-Storage
4 Persistent-Frozen-Image-Copy
OpsCenter Database Tables | 83
lookup_BackupType
This table contains the possible backup type for a backup job
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id domain_Job backupType
id domain_JobArchive backupType
id domain_ScheduledJob executionType
Translated Values
id Translated Value
-1
0 Immediate
1 Scheduled
2 User-Directed
3 Quick Erase
4 Long Erase
5 Database Backup Staging
6 Database Backup Cold
7 7
84 | OpsCenter Database Tables
lookup_CalendarType
Reference table for calendar types of schedule, such as calendar based, frequency based and so on
Translated Values
id Translated Value
0 No Calendar, frequency-based schedule.
1 Calendar-based schedule with no retries after run day
2 Calendar-based schedule with retires after run day
OpsCenter Database Tables | 85
lookup_CapacityPlanning
Reference table for types of capacity planning i.e. Demand and Supply.
Translated Values
id Translated Value
1 Capacity Backed Up (Demand)
2 Available Free Media Capacity (Supply)
86 | OpsCenter Database Tables
lookup_ClientStatus
Reference table for client status, like Offline, Online, Partially Online and so on
Translated Values
id Translated Value
0 Offline
1 Online
2 Partially Online
OpsCenter Database Tables | 87
lookup_CollectionLevel
Reference table for client image collection level, like Level_0, Level_1 and so on
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id domain_ClientImageCollectionLevel oldImageCollectionLevel
Translated Values
id Translated Value
0 Level_0
1 Level_1
2 Level_2
3 Level_3
88 | OpsCenter Database Tables
lookup_CompressionType
This table contains information per job as, if client compression is enabled in the policy for the backup job
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id nb_Job compression
Translated Values
id Translated Value
-1
0 No
1 Yes
OpsCenter Database Tables | 89
lookup_ControlMode
Reference table for control mode of a drive type like AVR, Down, Operator, Pending, Mixed and so on
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id nb_TapeDrive controlMode
id nb_TapeDrivePath driveControl
Translated Values
id Translated Value
-1
1 Down
2 Operator
3 Automatic Volume Recognition
4 Mixed
5 Device Manager Down
6 Active
7 Scan
8 Pending
9 Restart
10 Down Robot Type
11 Pend Robot Type
12 Scan Robot Type
13 Robot Type
90 | OpsCenter Database Tables
lookup_CopyFormat
Reference table for Copy Format like NDMP, Snapshot and so on
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id domain_ImageCopyFormat dataFormat
Translated Values
id Translated Value
0 Undefined
1 Tar
2 Snapshot
3 NDMP
OpsCenter Database Tables | 91
lookup_CopyState
This table holds valid values for state of the copy operation created using Storage Lifecycle policy.
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id domain_SLPImageCopy copyState
Translated Values
id Translated Value
0 Deleted
1 Not Started
2 In Process
3 Job Complete
4 In Process
5 Copy Complete
6 Cancelled
7 Can not Process
8 Deferred
9 Inactive
10 Paused
11 11
14 14
15 15
92 | OpsCenter Database Tables
lookup_DataClassification
Reference table for NetBackup data classification types like Gold, Sliver, Platinum, and so on
Translated Values
id Translated Value
-1 Unknown
1 Platinum
2 Gold
3 Silver
4 Bronze
5 Testing
OpsCenter Database Tables | 93
lookup_DataCollectionStatus
Reference table for Opscenter data collection status like Not Applicable, Not Started, Queued.Running, Completed, Failed,
Not Licensed, Disabled, Black Out
Translated Values
id Translated Value
0 Not Applicable
1 Not Started
2 Queued
3 Running
4 Completed
5 Failed
6 Not Licensed
7 Disabled
8 Black Out
94 | OpsCenter Database Tables
lookup_DataCollectorType
Reference table for OpsCenter data collection type like OPSCENTER, VBR, VBR_OPSCENTER, Unknown
Translated Values
id Translated Value
-1 Unknown
1 OPSCENTER
2 VBR
3 VBR_OPSCENTER
OpsCenter Database Tables | 95
lookup_DataMoverType
This table contains possible values for data mover types.
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id nb_Job dataMovement
id nb_JobArchive dataMovement
id nb_Policy dataMoverType
Translated Values
id Translated Value
-1
0 Standard
1 Instant Recovery Disk
2 Instant Recovery Disk and Tape
3 Synthetic
4 Disk Staging
5 Snapshot
96 | OpsCenter Database Tables
lookup_DataType
Reference table for Opscentor data type like job,media,policy and so on
Translated Values
id Translated Value
1 Job
2 Media
3 Policy & Schedule
4 Tape Drive Information
5 Skipped Files
6 Throughput
7 Images
8 Archive Policy
9 Vault Store
10 Target
11 Archive
12 Catalog
13 Client
14 Device
15 Disk
16 FT
17 License
18 Media Server
19 Service
20 Storage Service
21 Volume
22 Storage Unit
23 Oracle
24 Scheduled Jobs
25 Error Logs
26 Audit
27 Host Properties
28 Hold
29 Index
30 SubJobs
50 Legacy License
OpsCenter Database Tables | 97
id Translated Value
51 Fetb License
52 Sfr
53 Appliance Hardware
54 Storage Service Event
55 Robot
56 Robot Slot Count
57 Storage Unit Group
58 Volume Group
59 Volume Pool
60 Protected Clients
61 SLP Image
62 BMR Job Status
63 BMR, Skipped Files and Job Throughput
64 Retention Level
65 Virtual Machine
66 Appliance
67 Cloud
98 | OpsCenter Database Tables
lookup_DensityType
This table stores information about density of media.
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id lookup_DriveType defaultDensityTypeOrdinal
id lookup_RobotType defaultDensityType
id nb_StorageUnit density
id nb_TapeDrivePendingRequests density
Translated Values
id Translated Value
-1 undefined
0 qscsi
6 hcart
9 odiskwm
10 odiskwo
12 4mm
13 dlt
14 hcart2
15 dlt2
16 8mm
17 8mm2
19 dtf
20 hcart3
21 dlt3
22 8mm3
23 sdlt
24 lto
25 ait
OpsCenter Database Tables | 99
lookup_DiskPoolStatus
Reference table for disk pool statuses, such as Up, Down, Running, Deleting, Unknown
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id domain_DiskPool status
Translated Values
id Translated Value
0 Unknown
1 Incomplete
2 Up
3 Down
4 Deleting
15 States
4096 Updating
4097 Transient(Updating Incomplete)
4098 Transient(Updating Up)
4099 Transient(Updating Down)
4100 Transient(Updating Deleting)
61440 Locks
100 | OpsCenter Database Tables
lookup_DiskPoolType
Reference table for disk pool type like Formatted Disk, Raw Disk, Raw Disk Formatted Disk, Direct Attached and so on
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id nb_DiskPool type
Translated Values
id Translated Value
1 Formatted Disk
2 Raw Disk
3 Raw Disk Formatted Disk
4 Direct Attached
5 Direct Attached Formatted Disk
6 Direct Attached Raw Disk
7 Direct Attached Raw Disk Formatted Disk
8 Network Attached
9 Network Attached Formatted Disk
10 Network Attached Raw Disk
11 Network Attached Raw Disk Formatted Disk
12 Network Attached Direct Attached
13 Network Attached Direct Attached Formatted Disk
14 Network Attached Direct Attached Raw Disk
15 Network Attached Direct Attached Raw Disk Formatted Disk
OpsCenter Database Tables | 101
lookup_DiskVolumeStatus
Reference table for Disk Volume Status like Up, Down, Unknown
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id nb_DiskVolume state
Translated Values
id Translated Value
0 Unknown
1 Up
2 Down
3 Transient
102 | OpsCenter Database Tables
lookup_DomainType
Reference table for domain types
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id audit_UserIdentity domainType
Translated Values
id Translated Value
0 unknown
1 nt
2 nisplus
3 vx
4 unixpwd
5 ldap
6 nis
7 localhost
OpsCenter Database Tables | 103
lookup_DriveReachableState
Reference table for reachable state of a drive like Reachable, Unreachable, Mixed in case of shared drive when drive is
reachable from some of the hosts and not reachable from some hosts.
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id nb_TapeDrive reachable
id nb_TapeDrivePath reachable
Translated Values
id Translated Value
-1
0 Unreachable
1 Reachable
2 Mixed
104 | OpsCenter Database Tables
lookup_DriveStatus
Reference table for the status of drive like Up, Down, Disabled, or Mixed. In case of shared drive, if status of drive for all the
hosts is not the same.
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id nb_TapeDrive driveStatus
Translated Values
id Translated Value
-1 Unknown
1 Up
2 Down
3 Mixed
4 Disabled
OpsCenter Database Tables | 105
lookup_DriveType
Reference table for different drive types along with their density type and media type
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
defaultDensityTypeOrdinal lookup_DensityType id
defaultMediaTypeOrdinal lookup_MediaType id
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id domain_TapeDrive type
id domain_TapeDriveHistory type
Translated Values
id Translated Value
-1 Unknown
0 qscsi
3 hcart
6 odisk
8 4mm
9 dlt
10 hcart2
11 dlt2
12 8mm
13 8mm2
15 dtf
16 hcart3
17 dlt3
18 8mm3
19 sdlt
20 lto
106 | OpsCenter Database Tables
id Translated Value
21 ait
OpsCenter Database Tables | 107
lookup_EntityType
Reference table for entity types in OpsCenter like Master Server, Media Server, Policy, Report, Saved Report and so on
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id domain_Entity entityType
id managedObject_EntityAttribute entityType
Translated Values
id Translated Value
1 Generic
2 Master Server
4 Media Server
6 Master_Media
8 Client
10 Master_Client
12 Media_Client
14 Master_Media_Client
16 File System
32 Policy
64 Report
128 SaveReport
256 Exchange Server
512 Enterprise Vault Server
1024 Vault
2048 Dedupe_Appliance_CR
108 | OpsCenter Database Tables
lookup_FatServiceState
Reference table for FT service states like Online, Offline, Disabled and so on
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id nb_FatClient state
id nb_FatServer state
Translated Values
id Translated Value
-1
0 Unknown State
1 Online
2 Offline
3 Disabled
4 Discovery In Progress
OpsCenter Database Tables | 109
lookup_HostType
Reference table for Host Type like Master Server, Media Server, Unknown
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id nb_Service hostType
Translated Values
id Translated Value
-1 Unknown
0 0
1 Master Server
2 Media Server
110 | OpsCenter Database Tables
lookup_ImageTIRStatus
Reference table for True Image Restore status like In Progress, Synthetic on Disk and so on
Translated Values
id Translated Value
-1
0 None
1 Info in Progress
2 Info on Disk
3 Info not on Disk
4 Rsv Synthetic Info on Disk
5 Synthetic Info on Disk
OpsCenter Database Tables | 111
lookup_ImageType
Reference table for Image Type like Regular, Backup Exec, Imported and so on
Translated Values
id Translated Value
-1
0 Regular
1 Pre-Import
2 Pre-Import BE
3 Imported
4 Backup Exec
5 Backup Exec 2
112 | OpsCenter Database Tables
lookup_JobOperationType
This table contains the possible operation executed by a backup job
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id nb_JobAttempt operation
id nb_JobAttemptArchive operation
id nb_JobProcessAttribute operation
id nb_JobProcessAttributeArchive operation
Translated Values
id Translated Value
-2 Ended
-1
0 Mounting
1 Positioning
2 Connecting
3 Writing
4 Choosing Images
5 Duplicating Images
6 Choosing Media
7 Catalog Backup
8 Eject and Report
9 Done
10 Reading
11 Duplication
12 Import
13 Verify
14 Restore
15 Catalog Backup
16 Vault
17 Label
18 Erase
19 Query Database
20 Process Extents
OpsCenter Database Tables | 113
id Translated Value
21 Planning Read/Write Actions
22 Creating Snapshot
23 Deleting Snapshot
24 Catalog Recovery
25 Media Contents
26 Request Resources
27 Parent Job
28 Indexing
29 Duplicate to remote master
30 Running
114 | OpsCenter Database Tables
lookup_JobState
The table contains the possible values for state of a backup job
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id domain_Job state
id domain_JobArchive state
Translated Values
id Translated Value
-100 Unknown
-4 Deleted
-3 New
-2 Corrupt
-1 Undefined
0 Queued
1 Active
2 Waiting for Retry
3 Done
4 Suspended
5 Incomplete
100 Cancelled
102 On Hold
106 Missed
OpsCenter Database Tables | 115
lookup_JobStatus
Reference table for Job Status (like Successful, Partially Successful, Failed, or Missed)
Translated Values
id Translated Value
-1 Unknown
0 Successful
1 Partially Successful
2 Failed
3 Missed
116 | OpsCenter Database Tables
lookup_JobStatusCode
This table contains the possible values for the exit code of a backup job.
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id domain_Job statusCode
id domain_JobArchive statusCode
id nb_JobAttempt statusCode
id nb_JobAttemptArchive statusCode
OpsCenter Database Tables | 117
lookup_JobSubType
This table contains the possible types of backup for each directory under a job
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id domain_Job subType
id domain_JobArchive subType
Translated Values
id Translated Value
-1 Unknown
0 Undefined
1 File System
2 TSM Database
3 TSM Storage Pool
4 MS Exchange
5 Lotus Domino
6 MS SQL
7 Oracle
8 DB2
9 System State and Services
10 Disaster Recovery
11 Export To NetBackup
12 Catalog
13 Vault
14 SAP
15 Sybase
16 MS Share Point
17 Informix
18 Datastore
19 NDMP
20 Full System
21 UNC Path
22 PDDO
23 Enterprise Vault
118 | OpsCenter Database Tables
id Translated Value
24 Maintenance
28 SQL BackTrack
29 Proxy
30 Non standard
31 Apollo wbak
32 Any
33 DataTools SQL BackTrack
34 Auspex FastBackup
35 FlashBackup
36 Split Mirror
37 AFS
38 DFS
39 Teradata
40 OpenVMS
41 MPE/iX
42 FlashBackup Windows
43 Disk Staging
44 Generic
45 CMS DB
46 PureDisk Export
47 VMware
48 Hyper-V
49 Synthetic
50 Rotation
OpsCenter Database Tables | 119
lookup_JobType
Reference table for Job Type (like Backup, Archive, Restore, Verify, Duplicate, Image Import)
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id domain_Job type
id domain_JobArchive type
Translated Values
id Translated Value
-1 Undefined
0 Backup
1 Archive
2 Restore
3 Verify
4 Duplication
5 Image Import
6 Catalog Backup
7 Vault
8 Label
9 Erase
10 Tape Request
11 Cleaning
12 Tape Formatting
13 Inventory
14 DQTS
15 DB Recover
16 Media Contents
17 Image Cleanup
18 LiveUpdate
19 Generic
20 Replication
21 Import
22 Backup From Snapshot
25 Application State Capture
120 | OpsCenter Database Tables
id Translated Value
26 Index for Search
27 Index Cleanup for Search
28 Snapshot
29 Index From Snapshot
30 Activate Instant Recovery
31 Deactivate Instant Recovery
32 Reactivate Instant Recovery
33 Stop Instant Recovery
34 VM Instant Recovery
35 35
100 None
1020 Retrieve
1021 Utility
1022 Retention
1023 Tape Eject
1024 Automatic Discovery & Protection
1025 Report
1026 Test Run
1027 Task Last
1029 Migration
1030 Reclamation
1031 Storage Pool Management
OpsCenter Database Tables | 121
lookup_MasterServerStatus
Reference table for Master Server Status
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id domain_MasterServer status
Translated Values
id Translated Value
-1 Unknown
1 Connected
3 Not Connected
4 Disabled
5 Retired
6 Dummy
7 7
122 | OpsCenter Database Tables
lookup_MediaRole
Reference table for media roles like Unassigned, Regular Backups, Catalog Backups and so on
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id domain_Media role
Translated Values
id Translated Value
-1 Unknown
0 Unassigned
1 Regular Backups
2 Catalog Backups
3 Storage Migrator
4 Storage Migrator for Microsoft Enterprise/Windows
OpsCenter Database Tables | 123
lookup_MediaStatus
Reference table for status of the media, such as Active, Non-active, Suspended, Frozen and so on
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id domain_Media status
id domain_MediaHistory status
Translated Values
id Translated Value
-100 Non Active
-99 Other
-1 Other
0 Active
1 Frozen
2 Suspended
4 Retired
8 Full
64 Multiple Retention Levels
128 Imported
516 Multiplexed
2048 WORM
4096 BE
4097 Unreported
124 | OpsCenter Database Tables
lookup_MediaSubType
Reference table for the subtypes of media for example, Basic Disk, Snap Vault,Array Disk and so on
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id nb_StorageUnit mediaSubType
Translated Values
id Translated Value
-1
0 Default
1 Basic Disk
2 NearStore
3 SnapVault
4 ArrayDisk
5 PureDisk
6 DiskPool
OpsCenter Database Tables | 125
lookup_MediaType
Reference table for the different media types used in NetBcakup. NetBackup uses media types to differentiate the media that
have different physical characteristics. Each media type may represent a specific physical media type. For example,
NetBackup media type of 8MM, 8MM2, or 8MM3 can represent Sony AIT media.
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id domain_Media type
id lookup_DriveType defaultMediaTypeOrdinal
id lookup_RobotType defaultMediaType
id nb_SummaryMedia mediaTypeOrdinal
Translated Values
id Translated Value
-1
0 DEFAULT
1 REWR_OPT
2 WORM_OPT
4 8MM
5 8MM_CLN
6 HCART
8 QCART
9 4MM
10 4MM_CLN
11 DLT
12 DLT_CLN
13 HC_CLN
14 HCART2
15 HC2_CLN
16 DLT2
17 DLT2_CLN
18 8MM2
19 8MM2_CLN
126 | OpsCenter Database Tables
id Translated Value
22 DTF
23 DTF_CLN
24 HCART3
25 HC3_CLN
26 DLT3
27 DLT3_CLN
28 8MM3
29 8MM3_CLN
30 SDLT
31 LTO
32 AIT
33 B2D
34 BLANK
35 SCANNED
OpsCenter Database Tables | 127
lookup_MemberState
Reference table for the state of a security member, who has been granted permission in Ops Center
Translated Values
id Translated Value
0 Enabled
1 Disabled
128 | OpsCenter Database Tables
lookup_OffHostType
Reference table for OffHost types. i.e. Standard, Alternate Client, Network Attached Storage etc.
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id nb_Job offHostType
id nb_JobArchive offHostType
Translated Values
id Translated Value
0 Standard
1 Alternative Client
2 Third Party Copy
3 Media Server Copy
4 Network Attached Storage
5 NDMP
OpsCenter Database Tables | 129
lookup_OS
Reference table for all ioperating systems like Windows,Solaris, Linux, HP, AIX
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id domain_Client osType
id domain_MasterServer osType
id domain_MediaServer osType
Translated Values
id Translated Value
-1 Unknown
0
1 Solaris_x86_9
2 OSF1_V5
3 HP-UX11.00
4 HP-UX11.11
5 HP-UX11.23
6 FreeBSD5.3
7 IBMpSeriesRedHat2.6
8 IBMpSeriesSuSE2.6
9 IBMzSeriesLinux2.4.21
10 IBMzSeriesRedHat2.6
11 IBMzSeriesSuSE2.6
12 RedHat2.4
15 RedHat2.6
16 SuSE2.4
17 SuSE2.6
18 MacOSX10.3
19 MacOSX10.4
20 NDMP
21 NetWare
22 OpenVMS_Alpha
23 OpenVMS_I64
24 OpenVMS_VAX
130 | OpsCenter Database Tables
id Translated Value
25 Windows2000
26 WindowsNT
27 WindowsVista
28 Windows2003
29 Windows2008
30 WindowsXP
31 AIX
32 AIX5
33 Suse
34 IRIX65
35 Solaris10
36 Solaris8
37 Solaris9
38 Solaris_x86_10
39 Solaris_x86_10_64
40 Solaris_x86_8
41 41
42 42
43 43
44 44
45 45
46 46
47 47
48 48
OpsCenter Database Tables | 131
lookup_PathStatus
This table stores information about the status of the path.
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id nb_Robot pathStatus
id nb_TapeDrivePath pathStatus
Translated Values
id Translated Value
-1 Unknown
0
1 Up
2 Down
3 Disabled
132 | OpsCenter Database Tables
lookup_PolicyEncryptionType
Reference table for policy encryption type that is Yes or No.
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id nb_Policy clientEncrypt
Translated Values
id Translated Value
-1 Unknown
0 No
1 Yes
OpsCenter Database Tables | 133
lookup_PolicyStatus
Reference table for policy status types that is Active, Failed and so on
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id domain_Policy status
Translated Values
id Translated Value
-1 Unknown
0 Active
1 Retired
2 Pending
3 Failed
4 Deleted
134 | OpsCenter Database Tables
lookup_PolicyType
Reference table for policy types i.e. Standard, Oracle and so on
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id domain_Job policyType
id domain_JobArchive policyType
id domain_Policy type
Translated Values
id Translated Value
-1
0 Standard
1 Proxy
2 Non-standard
3 Apollo-wbak
4 Oracle
5 Any
6 Informix-On-BAR
7 Sybase
8 MS-SharePoint
9 IGNORE:CT_WINDOWS
10 Netware
11 DataTools-SQL-BackTrack
12 Auspex-FastBackup
13 MS-Windows
14 OS/2
15 MS-SQL-Server
16 MS-Exchange-Server
17 SAP
18 DB2
19 NDMP
20 FlashBackup
21 Split-Mirror
22 AFS
OpsCenter Database Tables | 135
id Translated Value
23 DFS
24 DataStore
25 Lotus-Notes
26 Teradata
27 OpenVMS
28 MPE/iX
29 FlashBackup-Windows
30 Vault
31 BE-MS-SQL-Server
32 BE-MS-Exchange-Server
33 Macintosh
34 Disk Staging
35 NBU-Catalog
36 Generic
37 CMS-DB
38 PureDisk-Export
39 Enterprise-Vault
40 VMware
41 Hyper-V
44 44
140 Synthetic
141 Rotation
136 | OpsCenter Database Tables
lookup_PoolType
Reference table for Pool Type like Regular, Scratch, Catalog
Translated Values
id Translated Value
0 Regular
1 Scratch
2 Catalog
OpsCenter Database Tables | 137
lookup_Product
Reference table for products supported in OpsCenter like Veritas NetBackup, Veritas NetBackup PureDisk and so on
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id domain_Client product
id domain_Entity productType
id domain_MasterServer product
id domain_MediaServer product
id lookup_ProductVersion productId
Translated Values
id Translated Value
-1
0
1 Veritas NetBackup
4 Veritas NetBackup Master Appliance
16 Veritas NetBackup Media Appliance
32 Veritas NetBackup Media Server Appliance
128 Veritas Backup Exec
256 Veritas NetBackup PureDisk
512 Veritas Enterprise Vault
1024 IBM Tivoli Storage Manager
2048 EMC NetWorker
4096 Veritas NetBackup Deduplication Appliance
138 | OpsCenter Database Tables
lookup_ProductVersion
Reference table for product version, such as all release versions
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
productId lookup_Product id
Translated Values
id Translated Value
-1
0
1 Veritas NetBackup 3.4.x
2 Veritas NetBackup 4.5
3 Veritas NetBackup 5.x
4 Veritas NetBackup 6.0.0
5 Veritas NetBackup 6.0.1
6 Veritas NetBackup 6.0.2
7 Veritas NetBackup 6.0.3
8 Veritas NetBackup 6.0.4
9 Veritas NetBackup 6.0.5
10 Veritas NetBackup 6.0.6
11 Veritas NetBackup 6.0.7
12 Veritas NetBackup 6.0.8
13 Veritas NetBackup 6.0.9
14 Veritas NetBackup 6.5.0
15 Veritas NetBackup 6.5.1
16 Veritas NetBackup 6.5.2
17 Veritas NetBackup 6.5.3
OpsCenter Database Tables | 139
id Translated Value
18 Veritas NetBackup 6.5.4
19 Veritas NetBackup 6.5.5
20 Veritas NetBackup 6.5.6
21 Veritas NetBackup 6.5.7
22 Veritas NetBackup 6.5.8
23 Veritas NetBackup 6.5.9
24 Veritas NetBackup 7.0.0
101 Veritas Backup Exec 10.0
102 Veritas Backup Exec 10d
103 Veritas Backup Exec 11d
104 Veritas Backup Exec 12.0
105 Veritas Backup Exec 12.5
106 Veritas Backup Exec 2010
201 Veritas NetBackup PureDisk 6.2
202 Veritas NetBackup PureDisk 6.2.1
203 Veritas NetBackup PureDisk 6.5
204 Veritas NetBackup PureDisk 6.2.2
205 Veritas NetBackup PureDisk 6.5.0.1
206 Veritas NetBackup PureDisk 6.5.1
207 Veritas NetBackup PureDisk 6.6
301 Veritas Enterprise Vault 7.5
302 Veritas Enterprise Vault 8.0
303 Veritas Enterprise Vault 9.0
304 Veritas Enterprise Vault 10.0
401 IBM Tivoli Storage Manager 5.3
402 IBM Tivoli Storage Manager 5.4
403 IBM Tivoli Storage Manager 5.5
501 EMC NetWorker 6.x
502 EMC NetWorker 7.x
140 | OpsCenter Database Tables
lookup_QueuedReason
This table contains information on the reasons because of which a NetBackup job can be delayed
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id nb_JobBackupAttributes queuedReason
id nb_JobBackupAttributesArchive queuedReason
Translated Values
id Translated Value
-1
0
1 Media is in use
2 Drives are in use
3 Tape media server is not active
4 Robotic Library is Down on Server
5 Maximum Job Count has been Reached for The Storage Unit
6 Waiting for Media Request Delay to Expire
7 Local Drives are Down
8 Media is in a Drive That is in Use by NetBackup
9 Physical Drives are not Available for Use
10 Cleaning Media is not Available for Use
11 Drive Scan Host is not Active
12 Disk Media Server is not Active
13 Media Server is Currently not Connected to Master Server
14 Media Server is not an Active Node of a Cluster
15 Storage Unit Concurrent Jobs Throttled
16 Job History Indicates That Drives are in Use
17 Disk Volume is Temporarily Unavailable
Maximum Number of Concurrent Disk Volume Readers has
18 been Reached
19 Disk Pool is Unavailable
20 FT Pipes are in Use
21 Disk Volume is Unmounting
22 Disk Volume is in Use
23 Maximum Partially Full Volumes has been Reached
OpsCenter Database Tables | 141
id Translated Value
24 Limit has been reached for requested resource
25 Drives are in Use in Storage Unit
26 Waiting for Shared Tape Drive Scan to Stop
27 Waiting for Mount of Disk Volume
28 Mount Point for Tape Already Exists
29 Pending Action
142 | OpsCenter Database Tables
lookup_ReconciledJobType
This table stores the possible reasons for reconciliation of a backup job
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id domain_ReconciledJob reconciliationType
id domain_ReconciledJobArchive reconciliationType
Translated Values
id Translated Value
-1 Unknown
1 Host could not be reached
2 Host rebooted during backup
3 User terminated
4 Exceeded allowable time frame
5 Un-Reconcile
OpsCenter Database Tables | 143
lookup_Replication
Reference table for Replication like Source, Target, Mirror and so on
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id nb_StorageUnit replication
id nb_StorageUnitGroup replication
Translated Values
id Translated Value
0 None
1 Source
2 Target
3 Source,Target
4 Mirror
5 Source (Mirror)
6 Target (Mirror)
7 Source,Target (Mirror)
8 Independent
9 Source (Independent)
10 Target (Independent)
11 Source,Target (Independent)
13 Source (Mirror, Independent)
14 Target (Mirror, Independent)
15 Source,Target (Mirror, Independent)
144 | OpsCenter Database Tables
lookup_RetentionLevelUnit
Reference table for retention-level unit like days, months, minutes, seconds
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id nb_RetentionLevel unit
Translated Values
id Translated Value
-1 Infinite
1 Days
2 Weeks
3 Months
4 Years
5 Seconds
6 Minutes
7 Hours
OpsCenter Database Tables | 145
lookup_RetentionUnit
Reference table for retention unit like days, week, monthe, year
Translated Values
id Translated Value
0 Days
1 Weeks
2 Months
3 Years
146 | OpsCenter Database Tables
lookup_RobotType
This table stores information about type of robot.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
defaultDensityType lookup_DensityType id
defaultMediaType lookup_MediaType id
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id domain_Media libraryType
id domain_TapeLibrary type
id nb_StorageUnit robotType
id nb_TapeDrive robotType
Translated Values
id Translated Value
-1
0 NONE
1 ACS
2 TS8
5 ODL
6 TL8
7 TL4
8 TLD
10 TSD
11 TSH
12 TLH
13 TLM
17 LMF
OpsCenter Database Tables | 147
id Translated Value
18 RSM
19 TLS
20 TLL
21 TLA
22 SCSI
23 CHANGER FS 0
24 CHANGER FS 1
148 | OpsCenter Database Tables
lookup_ScheduleLevelType
Reference table for schedule level type that is frequency or calendar based.
Translated Values
id Translated Value
0 Frequency Based
1 Calendar Based
OpsCenter Database Tables | 149
lookup_ScheduleType
Reference table for schedule type, such as full, incremental and so on
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id domain_Job scheduleType
id domain_JobArchive scheduleType
id domain_Schedule type
Translated Values
id Translated Value
-1
0 Full
1 Differential Incremental
2 User backup
3 User archive
4 Cumulative Incremental
5 Archived Redo Log Backup
6 Skip
7 Consolidate
8 Copy
9 Daily
10 Working Set
11 Full with all logs
12 Incremental by modified time
13 Differential by modified time
14 Full by modified time
15 Image
16 Database
17 Selective
18 Log
19 Set
20 Group
98 Incremental
99 Automatic Vault
150 | OpsCenter Database Tables
lookup_ServiceState
Reference table for service state like running, stop, unknown, not licensed and so on
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id nb_Service state
Translated Values
id Translated Value
0 Unknown
1 Not Installed
2 Not Licensed
3 Start Pending
4 Running
5 Stop Pending
6 Stopped
7 Failed
8 Restart Pending
12 Disabled
OpsCenter Database Tables | 151
lookup_ServiceType
Reference table for service type like database manager,request deamon,job manager and so on
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id nb_Service serviceTypeId
Translated Values
id Translated Value
-1 Unknown
1 Database Manager
2 Request Daemon
3 Device Manager
4 Enterprise Media Manager
5 Job Manager
6 Notification Service
7 Policy Execution Manager
8 Resource Broker
9 Service Layer
10 Vault Manager
11 Volume Manager
12 Adaptive Server Anywhere - VERITAS_NB
13 Bare Metal Restore Daemon
14 Client Service
15 Compatibility Service
16 Service Monitor
17 Event Manager
18 Remote Manager and Monitoring Service
19 SAN Client Fibre Transport Service
20 Storage Service and Expiration Manager
21 Key Management Service
22 NetBackup Deduplication Engine
23 NetBackup Deduplication Manager
24 Agent Request Server
25 NetBackup Audit Manager
152 | OpsCenter Database Tables
id Translated Value
26 NetBackup Authentication
27 NetBackup Authorization
28 NetBackup CloudStore Service Container
29 nbftsrvr
30 nbfdrv64
31 Indexing & Hold Service
32 NetBackup Discovery Framework
33 Client Daemons
34 NetBackup SureScale Deduplication Service
35 Web Management Console
36 NetBackup Extendable Storage File System Service
OpsCenter Database Tables | 153
lookup_SLPState
This table holds valid values for state of the Storage Lifecycle Policy.
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id domain_SLPImage storageServiceState
Translated Values
id Translated Value
0 Deleted
1 Not Started
2 In Process
3 Complete
9 Inactive
10 Paused
154 | OpsCenter Database Tables
lookup_StorageServerState
Reference table for the state of storage server like Up/Down.
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id nb_StorageServer state
Translated Values
id Translated Value
0 Unknown
1 Up
2 Down
3 Transient
9 Continue Pending
10 Pause Pending
11 Paused
OpsCenter Database Tables | 155
lookup_StorageServiceRetentionLevel
This table stores valid values for retentions used in the Storage Lifecycle Policy.
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id nb_StorageServiceDestInfo retentionLevel
Translated Values
id Translated Value
-1 Unknown
0 1 week
1 2 weeks
2 3 weeks
3 1 Month
4 2 Months
5 3 Months
6 6 Months
7 9 Months
8 1 Year
9 Infinity
10 Infinity
11 Infinity
12 Infinity
13 Infinity
14 Infinity
15 Infinity
16 Infinity
17 Infinity
18 Infinity
19 Infinity
20 Infinity
21 Infinity
22 Infinity
23 Infinity
24 Infinity
156 | OpsCenter Database Tables
lookup_StorageServiceRetentionType
This table holds valid values for retention types used in the Storage Lifecycle policy.
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id domain_SLPImageCopy expirationType
id nb_StorageServiceDestInfo retentionType
Translated Values
id Translated Value
-1 Unknown
0 Fixed
1 Capacity managed
2 Expire After Copy
3 Target Retention
4 Maximum Snapshot Limit
5 Mirror
OpsCenter Database Tables | 157
lookup_StorageServiceSecondaryOperation
This table contanins valid values for secondary operations that can be performed on the Storage Lifecycle Policy.
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id nb_StorageServiceInfo secondaryOperation
Translated Values
id Translated Value
-1
0 Suspended
1 Active
158 | OpsCenter Database Tables
lookup_StorageServiceUsageType
This table holds valid values for copy types used in the Storage Lifecycle Policy.
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id domain_SLPImageCopy copyType
id nb_StorageServiceDestInfo usageType
Translated Values
id Translated Value
-1 Unknown
0 Backup
1 Duplication
2 Snapshot
3 Replication
4 Import
5 Backup From Snapshot
6 Index From Snapshot
7 Replication
OpsCenter Database Tables | 159
lookup_StorageUnitGroupSelectionMethod
Reference table for the method used for selecting Storage Unit Group like Prioritized, Round Robin, Failover, Media Server
Load Balancing
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id nb_StorageUnitGroup selectionMethod
Translated Values
id Translated Value
-1 Unknown
1 Prioritized
2 Least Recently Selected
3 Failover
4 Media Server Load Balance
160 | OpsCenter Database Tables
lookup_StorageUnitType
Reference table stores the types of stoarge unit like Disk, Media Manager, NDMP
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id domain_Job storageUnitType
id domain_JobArchive storageUnitType
id nb_StorageUnit mediaType
Translated Values
id Translated Value
-1
0 Disk
2 Media Manager
3 NDMP
OpsCenter Database Tables | 161
lookup_TapeLibrarySlotCountStatus
This table stores information about status of slot count of tape library.
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id domain_TapeLibrary slotCountStatus
Translated Values
id Translated Value
0 Slot count is calculated
1 Slot count is sent by NBSL
2 Slot count is entered by user
162 | OpsCenter Database Tables
lookup_TIRInfoType
Reference table for TIR Info types, such as No, Yes, Yes, with Move detection
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id nb_Policy collectTIRInfo
Translated Values
id Translated Value
-1 Unknown
0 No
1 Yes
2 Yes, with Move Detection
OpsCenter Database Tables | 163
lookup_TIRStatus
Reference table for status like In Progress, On Disk, Not On Disk, RSV Synthetic info on disk, Synthetic info on disk, Files file
incomplete, Files file failed
Translated Values
id Translated Value
0 None
1 In Progress
2 On Disk
4 Not On Disk
8 RSV Synthetic info on disk
10 Synthetic info on disk
16 Files file incomplete
32 Files file failed
164 | OpsCenter Database Tables
lookup_TransportType
This table contains the possible transport option available to move the backup from backup client to media server.
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id domain_Job transportType
id domain_JobArchive transportType
id nb_JobAttempt transportType
id nb_JobAttemptArchive transportType
Translated Values
id Translated Value
-1
0 LAN
1 FT
OpsCenter Database Tables | 165
lookup_VirtualHostType
Reference table for Virtual Host Type i.e. VMWare, Hyper-V.
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id nb_Policy virtualMachineType
Translated Values
id Translated Value
-1 Unknown
0 none
1 VMware
2 Hyper-V
166 | OpsCenter Database Tables
managedObject_EntityAttribute
This table contains custom attributes (for entities like master, media, client, and so on) defined by user.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
entityType lookup_EntityType id
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
name, entityType managedObject_EntityAttributeValue name, entityType
OpsCenter Database Tables | 167
managedObject_EntityAttributeValue
This table contains the values for custom attributes (for entities like master, media, client, and so on) defined by user.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
entityId domain_Entity id
name, entityType managedObject_EntityAttribute name, entityType
168 | OpsCenter Database Tables
nb_BMRJobsStatusArchive
This table stores data of BMR Jobs
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId, clientName, jobId nb_JobArchive masterServerId, clientName, id
OpsCenter Database Tables | 169
nb_CatalogBackup
Table that stores catalog data
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId domain_MasterServer id
170 | OpsCenter Database Tables
nb_ClientOffline
This table stores offline information of NetBackup client.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId, clientName domain_Client masterServerId, name
OpsCenter Database Tables | 171
nb_DeviceUsageArchive
This table stores information related to NetBackup device usage.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId domain_MasterServer id
masterServerId, clientName, jobId nb_JobArchive masterServerId, clientName, id
masterServerId, storageUnit nb_StorageUnit masterServerId, name
172 | OpsCenter Database Tables
nb_DiskPool
This table stores attributes related to disk pool.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId, name, masterServerId, name,
domain_DiskPool
storageServerName, serverType storageServerName, serverType
masterServerId domain_MasterServer id
type lookup_DiskPoolType id
masterServerId, storageServerName, nb_StorageServer masterServerId, name, serverType
serverType
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
masterServerId, name, masterServerId, diskPoolId,
nb_DiskVolume
storageServerName, serverType storageServerName, serverType
OpsCenter Database Tables | 173
nb_DiskVolume
Sum of the sizes of all fragments on the disk that are due for expiration
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
state lookup_DiskVolumeStatus id
masterServerId, diskPoolId, masterServerId, name,
nb_DiskPool
storageServerName, serverType storageServerName, serverType
174 | OpsCenter Database Tables
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
masterServerId, diskMediaId domain_ImageFragment masterServerId, diskMediaId
masterServerId, diskMediaId nb_DiskVolumeHistory masterServerId, diskMediaId
OpsCenter Database Tables | 175
nb_DiskVolumeHistory
This table stores the attributes for disk volume historical data.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId, diskMediaId nb_DiskVolume masterServerId, diskMediaId
176 | OpsCenter Database Tables
nb_FatClient
This table stores information about the SAN clients in the configuration. SAN clients communicate with NetBackup media
servers using Fibre Transport (FT) connection.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId domain_MasterServer id
state lookup_FatServiceState id
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
masterServerId, name nb_FatInitiatorDevice masterServerId, fatClientName
masterServerId, name nb_FatPipe masterServerId, fatClientName
OpsCenter Database Tables | 177
nb_FatInitiatorDevice
This table stores information about the FT devices in initiator mode
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId, fatClientName nb_FatClient masterServerId, name
masterServerId, name, inquiry nb_FatTargetDevice masterServerId, fatServerName, inquiry
178 | OpsCenter Database Tables
nb_FatPipe
This table stores information about the FT pipe. An FT pipe is a logical connecton that carries data between FT media server
and a SAN Client.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId, fatClientName nb_FatClient masterServerId, name
masterServerId, fatServerName nb_FatServer masterServerId, name
OpsCenter Database Tables | 179
nb_FatServer
This table stores information about the FT Media Servers. FT Media Servers are NetBackup media servers on which FT
services are activated. FT Media Servers accept connections from SAN clients and send the data to disk storage.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId domain_MasterServer id
state lookup_FatServiceState id
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
masterServerId, name nb_FatPipe masterServerId, fatServerName
masterServerId, name nb_FatTargetDevice masterServerId, fatServerName
180 | OpsCenter Database Tables
nb_FatTargetDevice
This table stores information about the FT target device. An FT device is the target mode driver on the NetBackup FT Media
Server.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId, fatServerName nb_FatServer masterServerId, name
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
masterServerId, fatServerName, inquiry nb_FatInitiatorDevice masterServerId, name, inquiry
OpsCenter Database Tables | 181
nb_Job
This table stores the last 30-days information of jobs.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId, clientName, id domain_Job masterServerId, clientName, id
compression lookup_CompressionType id
dataMovement lookup_DataMoverType id
offHostType lookup_OffHostType id
masterServerId, retentionLevel nb_RetentionLevel masterServerId, id
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
masterServerId, clientName, id nb_JobAttempt masterserverId, clientName, jobId
masterServerId, clientName, id nb_JobBackupAttributes masterserverId, clientName, jobId
masterServerId, clientName, id nb_JobProcessAttribute masterserverId, clientName, jobId
182 | OpsCenter Database Tables
nb_JobArchive
This table stores information related to NetBackup jobs.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId, clientName, id domain_JobArchive masterServerId, clientName, id
dataMovement lookup_DataMoverType id
offHostType lookup_OffHostType id
masterServerId, retentionLevel nb_RetentionLevel masterServerId, id
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
masterServerId, clientName, id nb_BMRJobsStatusArchive masterServerId, clientName, jobId
masterServerId, clientName, id nb_DeviceUsageArchive masterServerId, clientName, jobId
masterServerId, clientName, id nb_JobAttemptArchive masterserverId, clientName, jobId
masterServerId, clientName, id nb_JobBackupAttributesArchive masterserverId, clientName, jobId
masterServerId, clientName, id nb_JobProcessAttributeArchive masterserverId, clientName, jobId
OpsCenter Database Tables | 183
nb_JobAttempt
This table stores the last 30-days information of job attempts
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterserverId, srcMediaServerName domain_MediaServer masterServerId, name
masterserverId, destMediaServerName domain_MediaServer masterServerId, name
operation lookup_JobOperationType id
statusCode lookup_JobStatusCode id
transportType lookup_TransportType id
masterserverId, clientName, jobId nb_Job masterServerId, clientName, id
masterserverId, srcStorageUnit nb_StorageUnit masterServerId, name
masterserverId, destStorageUnit nb_StorageUnit masterServerId, name
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
masterserverId, clientName, jobId,
masterserverId, clientName, jobId, id nb_JobAttemptLog attemptId
OpsCenter Database Tables | 185
nb_JobAttemptArchive
This table stores information related to job attempts.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterserverId, destMediaServerName domain_MediaServer masterServerId, name
masterserverId, srcMediaServerName domain_MediaServer masterServerId, name
operation lookup_JobOperationType id
statusCode lookup_JobStatusCode id
transportType lookup_TransportType id
masterserverId, clientName, jobId nb_JobArchive masterServerId, clientName, id
masterserverId, destStorageUnit nb_StorageUnit masterServerId, name
masterserverId, srcStorageUnit nb_StorageUnit masterServerId, name
OpsCenter Database Tables | 187
nb_JobAttemptLog
This table stores the 30-days information of the job attempt log.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterserverId, clientName, jobId, nb_JobAttempt masterserverId, clientName, jobId, id
attemptId
188 | OpsCenter Database Tables
nb_JobBackupAttributes
This table holds data of additional job attributes for 30 days.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
queuedReason lookup_QueuedReason id
masterserverId, clientName, jobId nb_Job masterServerId, clientName, id
masterserverId, srcStorageUnit nb_StorageUnit masterServerId, name
OpsCenter Database Tables | 189
nb_JobBackupAttributesArchive
This table stores data of additional job attributes
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
queuedReason lookup_QueuedReason id
masterserverId, clientName, jobId nb_JobArchive masterServerId, clientName, id
OpsCenter Database Tables | 191
nb_JobDbInstanceArchive
This table stores database instance details for database jobs for 30 days
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterserverId, clientName, jobId domain_JobArchive masterServerId, clientName, id
OpsCenter Database Tables | 193
nb_JobFiles
This table stores information about files backed up for 30 days
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterserverId, clientName, jobId domain_Job masterServerId, clientName, id
194 | OpsCenter Database Tables
nb_JobFilesArchive
This table stores information about files backed up for 30 days
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterserverId, clientName, jobId domain_JobArchive masterServerId, clientName, id
OpsCenter Database Tables | 195
nb_JobProcessAttribute
This table stores additional job attributes related to job process for 30 days.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
operation lookup_JobOperationType id
masterserverId, clientName, jobId nb_Job masterServerId, clientName, id
196 | OpsCenter Database Tables
nb_JobProcessAttributeArchive
This table stores additional job attributes related to job process.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
operation lookup_JobOperationType id
masterserverId, clientName, jobId nb_JobArchive masterServerId, clientName, id
OpsCenter Database Tables | 197
nb_Media
This table stores attributes related to media.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId domain_MasterServer id
masterServerId, id domain_Media masterServerId, id
OpsCenter Database Tables | 199
nb_Policy
This table stores information about various policy attributes.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId, name, masterServerId, name,
domain_Policy
policyDomainName, versionNo policyDomainName, versionNo
dataMoverType lookup_DataMoverType id
clientEncrypt lookup_PolicyEncryptionType id
OpsCenter Database Tables | 201
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
masterServerId, name, masterServerId, policyName,
nb_PolicyCatalogDR
policyDomainName, versionNo policyDomainName, policyVersionNo
202 | OpsCenter Database Tables
nb_PolicyCatalogDR
This table stores information related to disaster recovery protection methods for the catalog data.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId, policyName, masterServerId, name,
nb_Policy
policyDomainName, policyVersionNo policyDomainName, versionNo
OpsCenter Database Tables | 203
nb_RetentionLevel
Table that holds data retention data
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId domain_MasterServer id
unit lookup_RetentionLevelUnit id
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
masterServerId, id domain_ImageCopy masterServerId, retentionLevel
masterServerId, id domain_Media masterServerId, retentionLevel
masterServerId, id domain_MediaHistory masterServerId, retentionLevel
masterServerId, id nb_Job masterServerId, retentionLevel
masterServerId, id nb_JobArchive masterServerId, retentionLevel
204 | OpsCenter Database Tables
nb_Robot
This table contains information about tape libraries or tape robots
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId domain_MasterServer id
masterServerId, robotNumber domain_TapeLibrary masterServerId, id
pathStatus lookup_PathStatus id
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
masterServerId, robotNumber nb_RobotPath masterServerId, robotNumber
OpsCenter Database Tables | 205
nb_RobotPath
This table contains information about tape libraries or tape robot paths
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId, robotNumber nb_Robot masterServerId, robotNumber
206 | OpsCenter Database Tables
nb_Service
Table that holds information of all backup services for the added master server
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId domain_MasterServer id
hostType lookup_HostType id
state lookup_ServiceState id
serviceTypeId lookup_ServiceType id
OpsCenter Database Tables | 207
nb_SLPBackLogSummary
This table holds summary data calculated every 24 hours for all storage lifecycle policies.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId domain_MasterServer id
208 | OpsCenter Database Tables
nb_StorageServer
This table stores storage server attributes used by OpsCenter
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId domain_MasterServer id
state lookup_StorageServerState id
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
masterServerId, storageServerName,
masterServerId, name, serverType nb_DiskPool serverType
OpsCenter Database Tables | 209
nb_StorageServiceDestInfo
This table holds configuration data for every destination in a storage lifecycle policy.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId domain_MasterServer id
retentionLevel lookup_StorageServiceRetentionLevel id
retentionType lookup_StorageServiceRetentionType id
usageType lookup_StorageServiceUsageType id
masterServerId, storageName, nb_StorageServiceInfo masterServerId, name, slpVersion
slpVersion
210 | OpsCenter Database Tables
nb_StorageServiceInfo
This table holds storage lifecycle policy configuration data.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId domain_MasterServer id
lookup_StorageServiceSecondaryOpera id
secondaryOperation tion
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
masterServerId, storageName,
masterServerId, name, slpVersion nb_StorageServiceDestInfo slpVersion
OpsCenter Database Tables | 211
nb_StorageUnit
This table stores storage unit attributes used by OpsCenter
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId domain_MasterServer id
masterServerId, host domain_MediaServer masterServerId, name
density lookup_DensityType id
mediaSubType lookup_MediaSubType id
replication lookup_Replication id
robotType lookup_RobotType id
mediaType lookup_StorageUnitType id
Foreign Tables
OpsCenter Database Tables | 213
nb_StorageUnitGroup
This table stores attributes of the storage unit group that are used by OpsCenter
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId domain_MasterServer id
replication lookup_Replication id
lookup_StorageUnitGroupSelectionMeth id
selectionMethod od
Foreign Tables
OpsCenter Database Tables | 215
nb_StorageUnitsInGroup
This table stores the storage units that are present in the storage unit group.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId, storageUnitName nb_StorageUnit masterServerId, name
masterServerId, storageGroupName nb_StorageUnitGroup masterServerId, name
OpsCenter Database Tables | 217
nb_SummaryMedia
This table stores the media summary.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId domain_MasterServer id
218 | OpsCenter Database Tables
nb_TapeDrive
This table stores NetBackup tape drive attributes used by OpsCenter .
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId domain_MasterServer id
masterServerId, name domain_TapeDrive masterServerId, name
controlMode lookup_ControlMode id
reachable lookup_DriveReachableState id
driveStatus lookup_DriveStatus id
robotType lookup_RobotType id
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
masterServerId, name nb_TapeDrivePath masterServerId, driveName
OpsCenter Database Tables | 221
nb_TapeDrivePath
This table stores information of NetBackup tape drive path
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
driveControl lookup_ControlMode id
reachable lookup_DriveReachableState id
pathStatus lookup_PathStatus id
masterServerId, driveName nb_TapeDrive masterServerId, name
222 | OpsCenter Database Tables
nb_TapeDrivePendingRequests
This table shows the media and device-related requests. Pending request is for a tape mount that NetBackup cannot service
automatically. Operator assistance is required to complete the request.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId domain_MasterServer id
density lookup_DensityType id
masterServerId, volumeGroupName nb_VolumeGroup masterServerId, name
OpsCenter Database Tables | 223
nb_VaultedMediaSummary
This table stores details of media that is vaulted.
nb_VirtualMachines
This table stores information of the NetBackup virtual machines.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId domain_MasterServer id
OpsCenter Database Tables | 225
nb_VolumeGroup
This table stores the details of volume group properties.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId domain_MasterServer id
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
masterServerId, name domain_Media masterServerId, volumeGroupName
masterServerId, name nb_TapeDrivePendingRequests masterServerId, volumeGroupName
226 | OpsCenter Database Tables
nb_VolumePool
This table stores details of the volume pool.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
masterServerId domain_MasterServer id
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
masterServerId, name domain_Media masterServerId, volumePoolName
masterServerId, name nb_Policy masterServerId, volumePoolName
OpsCenter Database Tables | 227
TaskContext
This table is used for keeping the task context information
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
context TaskMessage context
228 | OpsCenter Database Tables
TaskMessage
This table is used for keeping the task log message information
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
context TaskContext context
OpsCenter Database Tables | 229
view_Group
Stores the list of user groups created in OpsCenter
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id view_TreeAccessGroup groupId
id view_UserGroup groupId
230 | OpsCenter Database Tables
view_Node
Stores the list of nodes or containers that are created in OpsCenter. A container is part of a view and this contains another
container or entities like master server, client, policy and so on.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
entityId domain_Entity id
parentNodeId view_Node id
type view_NodeType id
treeId view_Tree id
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id view_Node parentNodeId
OpsCenter Database Tables | 231
view_NodeType
Reference table for node type
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id view_Node type
Translated Values
id Translated Value
1 Generic
2 Continent
3 Country
4 Province
5 City
6 Building
7 Department
64 Report
2048 Dedupe_Appliance_CR
232 | OpsCenter Database Tables
view_Tree
Stores the list of views that are created in OpsCenter.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
type view_TreeType id
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id view_Node treeId
id view_TreeAccessGroup treeId
id view_TreeAccessUser treeId
id view_TreeLevelAlias treeId
OpsCenter Database Tables | 233
view_TreeAccessGroup
Stores the access permissions of user groups to access views
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
groupId view_Group id
treeId view_Tree id
234 | OpsCenter Database Tables
view_TreeAccessUser
Stores the access permissions of users to access views. This view does not contain entries for Administrators, as by default,
they have all access rights on views.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
treeId view_Tree id
OpsCenter Database Tables | 235
view_TreeLevelAlias
Stores the aliases given to the levels of the view
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
treeId view_Tree id
236 | OpsCenter Database Tables
view_TreeType
Reference table for tree type (like Master Server, Client Policy and so on)
Foreign Tables
Primary Key Columns Foreign Table Foreign Key Columns
id view_Tree type
Translated Values
id Translated Value
2 Master Server
8 Client
16 File System
32 Policy
64 Standard Report
128 Save Report
256 Exchange Server
512 Enterprise Vault Server
1024 Vault
2048 Standard Report Appliance
OpsCenter Database Tables | 237
view_UserGroup
Stores the association between users and user groups. Each entry specifies a user who belongs to a specific group.
Primary Tables
Foreign Key Columns Primary Table Primary Key Columns
groupId view_Group id
238 | OpsCenter Database Views
nom_Drive
This database view provides the information about the drives.
nom_Driveusage
This database view provides the information about the drive usage.
nom_JobAverages
This database view provides the information of average of file count, kilobytes and throughput for jobs.
nom_JobVariance
This database view provides the information of job variance.
nom_NBClientNotBackedUp30Day
This database view provides the information about the client that is not backed up in the last 30 days.
nom_NBClientNotBackedUp7Day
This database view provides the information about the client that is not backed up in the last seven days.
nom_NBColdCatalogBackup
This database view provides the information about the cold catalog backup.
nom_NBJob
This database view provides the information about the job.
nom_NBJobAttempt
This database view provides the information about the NetBackup job attempt.
nom_NBJobAttemptPassRate
This database view provides the information about success and failure of the NetBackup job attempt.
nom_NBJobClient
This database view provides the information about the relation between the NetBackup job and client.
nom_NBJobPassRate
This database view provides the information about success and failure of the NetBackup job.
nom_NBJobVariance
This database view provides the information about the NetBackup job variance.
nom_NBMedia
This database view provides the information about the Media.
nom_NBMediaFullTapeCap
This database view provides the information about the full media.
nom_NBMediaState
This database view provides the information about the state media.
nom_NBMediaSummary
This database view provides the information about the media summary.
nom_NBPolicy
This database view provides the information about the NetBackup Policy.
nom_NBPolicyChange
This database view provides the information about the change in policy.
nom_NBPolicyClient
This database view provides the information about the association between the NetBackup policy and client.
nom_NBVolume
This database view provides the information about the NetBackup volume.
nom_Robot
This database view provides the information about the robot.
nom_RobotCap
This database view provides the information about the robot capacity.
nom_Server
This database view provides the information about the Master Server.
adjust_timestamp
In certain cases, timestamps are stored as a BIGINT, which is measured in 100s of nanoseconds since the beginning of the
Gregorian epoch. You can use this function to convert this into a more human readable format (yyyy-mm-dd HH:mm:ss).
Return Type
Data Type Description
timestamp This function will return date in 'yyyy-mm-dd HH:mm:ss' format.
OpsCenter Database Functions | 273
caseInsensitiveComparission
This function is used to compare the two string values (comaprison is not case sensitive).
Return Type
Data Type Description
integer This function returns 0 when the strings are equal, otherwise retruns 1.
274 | OpsCenter Database Functions
cyc_formatDay
This function is used to convert the date to the 'YYYY-MM-DD' format. (Example : if we pass '2012-03-19 17:57:22.000' to
function, we will get '2012-03-19')
Return Type
Data Type Description
date This function will return date in the 'YYYY-MM-DD' format.
OpsCenter Database Functions | 275
cyc_formatMonth
This function is used to convert the date to the 'YYYY-MM-01' format. (Example : if we pass '2012-03-19 17:57:22.000' to
function, we will get '2012-03-01')
Return Type
Data Type Description
date This function will return date in the 'YYYY-MM-01' format.
276 | OpsCenter Database Functions
cyc_formatYear
This function is used to convert the date to the 'YYYY-01-01' format. (Example : if we pass '2012-03-19 17:57:22.000' to
function, we will get '2012-01-01')
Return Type
Data Type Description
date This function will return date in the 'YYYY-01-01' format.
OpsCenter Database Functions | 277
FN_SEPARATE_VALUES
This function is used to split the string and insert the split data in the givien column.
Return Type
Data Type Description
integer This function always returns 0.
278 | OpsCenter Database Functions
getDiskPoolReplication
This function is used to convert the 'flags' column of the 'nb_DiskPool' table for mapping with the 'lookup_Replication' table.
Return Type
Data Type Description
integer This function returns the value that can be directly mapped to the 'lookup_Replication' table.
OpsCenter Database Functions | 279
getDiskVolumeReplication
This function is used to convert the 'flags' column of the 'nb_DiskVolume' table for mapping with the lookup_Replication table.
Return Type
Data Type Description
integer This function returns the value that can be directly mapped to the 'lookup_Replication' table.
280 | OpsCenter Database Functions
getDummyEntityIdByType
This function retruns the dummy value for that particular entity type.
Return Type
Data Type Description
integer Dummy value for that entity type.
OpsCenter Database Functions | 281
getDummyNonEntityIdByType
This function retruns the dummy value for that schedule ID and storage unit ID.
Return Type
Data Type Description
integer Dummy value for that 'Schedule ID' and 'Storage Unit ID'.
282 | OpsCenter Database Functions
getGregorianConstant
This function is used to get the "Unix epoch Time Value" in 100s of nanoseconds since the beginning of the Gregorian epoch.
Return Type
Data Type Description
This function returns "Unix epoch Time Value" in 100s of nanoseconds since the beginning of the
bigint Gregorian epoch.
OpsCenter Database Functions | 283
getGregorianUnixOffset
This function is used to get the "Unix epoch Time Value" in miliseconds since the beginning of the Gregorian epoch.
Return Type
Data Type Description
This function returns "Unix epoch Time Value" in miliseconds since the beginning of the Gregorian
bigint epoch.
284 | OpsCenter Database Functions
getInfiniteImageRetentionTime
This function is used to get the infinite image retention level time.
Return Type
Data Type Description
This function returns infinite image retention level time in 100s of nanoseconds since the beginning of
bigint the Gregorian epoch.
OpsCenter Database Functions | 285
getLocaleSpecificGenericMapping
This function is used to get the locale specific lookup value from the lookup table. (This function is normally used after
installing the language pack)
Return Type
Data Type Description
varchar(255) Localized value for that "lookup value ID" of lookup table.
286 | OpsCenter Database Functions
isEmptyString
This function is used to check string is empty (NULL or " ") or not?
Return Type
Data Type Description
bit This function returns the 1 when string is empty, otherwise retruns 0.
OpsCenter Database Functions | 287
NOMTimeToUTCBigint
This function is used to convert the DateTime to BIGINT Time (100s of nanoseconds since the beginning of the Gregorian
epoch).
Return Type
Data Type Description
bigint This function returns Time in 100s of nanoseconds since the beginning of the Gregorian epoch.
288 | OpsCenter Database Functions
NOM_DateDiff
This function is used to get the difference between two dates in seconds.
Return Type
Data Type Description
bigint This function returns the difference between two dates (date2-date1) in seconds.
OpsCenter Database Functions | 289
reporting_day
This function is used to get the start date for reporting.
Return Type
Data Type Description
date This function returns start date for reporting(in yyyy-mm-dd format).
290 | OpsCenter Database Functions
UTCBigintToNOMTime
This function is used to convert the BIGINT Time (100s of nanoseconds since the beginning of the Gregorian epoch) to
Timestamp (in the "Database Server Time Zone").
Return Type
Data Type Description
timestamp This function returns Timestamp (in the "Database Server Time Zone").
OpsCenter Database Functions | 291
UTCBigintToUTCTime
This function is used to convert the BIGINT Time (100s of nanoseconds since the beginning of the Gregorian epoch) to
Timestamp (in "GMT").
Return Type
Data Type Description
timestamp This function returns Timestamp (in "GMT").
292 | OpsCenter Database Functions
UTCTimeToUTCBigInt
This function is used to convert the DateTime to BIGINT Time (100s of nanoseconds since the beginning of the Gregorian
epoch).
Return Type
Data Type Description
bigint This function returns Time in 100s of nanoseconds since the beginning of the Gregorian epoch.
OpsCenter Database Procedures | 293
AllScheduledJobs
This procedure is used for the "Report Templates->Backup->Planning Activity->Planning Activity->All Jobs" report. This
procedure returns data for the job-level details reconciling scheduled vs actual job runs.
BMRJobsAtRisk
This procedure is used for the "Report Templates->Client Reports->BMR Client Configuration Backup Failures" report. This
procedure returns data for all jobs that failed to back up BMR client configuration, but the client data backup was partially or
fully successful.
capacitypalnning
This procedure is used for the "Report Templates->Backup->Planning Activity->Capacity Planning->Historical Size" report.
This procedure returns historical data for comparing available and used media capacity in a tabular form.
convertBigIntToTime
In certain cases, timestamps are stored as a BIGINT, which is measured in 100s of nanoseconds since the beginning of the
Gregorian epoch. You can use this procedure to convert this into a more readable format (yyyy-mm-dd HH:mm:ss).
getClientSummary
This procedure is used for the "Report Templates->Client Reports->Client Summary Dashboard" report. This procedure
returns jobs data on various parameters per client.
getDiskUsage
This procedure is used for the "Report Templates->Performance Reports->Disk Usage" report. This procedure returns the
data for disk utilization by master and media server.
getDurationVariance
This procedure is used for the "Report Templates->Backup->Job Activity->Variance->Backup Duration Variance" report. This
procedure returns data to show the percentage difference in backup duration and average backup duration of the past jobs
with the same policy, schedule and client.
getFileCountVariance
This procedure is used for the "Report Templates->Backup->Job Activity->Variance->File Count Variance" report. This
procedure returns data for percentage difference in backup file count as compared to average backup file count of past jobs
with same policy, schedule and client.
getJobSizeVariance
This procedure is used for the "Report Templates->Backup->Job Activity->Variance->Backup Job Size Variance" report. This
procedure returns data for Client/Policy level detail on backup job size variations between last full backup and recent
averages.
getMasterServerJobThroughput
This procedure is used for the "Report Templates->Performance Reports->Master Server Job Throughput" report. This
procedure returns master server throughput data.
getMediaServerJobThroughput
This procedure is used for the "Report Templates->Performance Reports->Media Server Job Throughput" report. This
procedure returns media server throughput data.
getMediaSummaryByMediaServer
This procedure is used for the "Report Templates->Media Reports->Media Summary by Media Server" report.
getNotBackedupClientList
This procedure is used for the "Report Templates->Client Reports->Clients Not Backed up" report. This procedure returns list
of restore jobs of the given client.
getPolicySummaryDashBoard
This procedure is used for the "Report Templates->Policy Reports->Policy Summary Dashboard" report. This procedure
returns size, throughput, job counts and success rate by master server, policy and policy type.
getSlpBackLog
This procedure is used for the "Report Templates->Storage Lifecycle Policy->SLP Backlog" report. This procedure returns
what the SLP backlog looks like against the image creation volume.
getSlpCopyDetails
This procedure is used for "SLP Status By Image Copy" drill-down report. This procedure returns detailed information about
image copies that are created by the SLP.
getSlpCopySummary
This procedure is used for the "SLP Status By Destinations" drill-down report. This procedure returns summary for all the
destinations that are defined in the SLP.
getSlpDuplicationProgress
This procedure is used for the "SLP Duplication Progress" drill-down report. This procedure returns data that shows how
duplications are progressing across all destinations.
getSlpStatusSummary
This procedure is used for the "Report Templates->Storage Lifecycle Policy->SLP Status" report and (SLP Status By SLP,
SLP Status By Client and SLP Status By Image) drill-down report. This procedure returns an overall summary of the SLP
status and allows user to monitor the SLP progress by master server.
getStorageUnitUsage
This procedure is used for the "Report Templates->Performance Reports->Storage Unit Usage" report. This procedure
returns storage unit utilization by master and media server.
getThroughputVariance
This procedure is used for the "Report Templates->Backup->Job Activity->Variance->Throughput Variance" report. This
procedure returns Client/Policy level detail on backup job throughput variations between last full backup and recent averages.
MediaServerThroughputPerDay
This procedure is used for the "Media Server Throughput per Day" drill-down report. This procedure returns throughput per
day for a selected Media Servers.
report_success_failure
This procedure is used for Success Rate Line, Advanced Success Rate, Consecutive Failures Report and All Failed Backups
reports
sp_report_drive_data
This procedure is used for "Drive Throughput" and "Drive Utilization" reports. This procedure returns the data in html format.
sp_risk_analysis
This procedure is used for the "Report Templates->Client Reports->Risk Analysis->Client Risk Analysis" report. This
procedure returns all client/policy combinations whose last successful backup occurred x many hours/days back.
sp_workload_analyzer
This procedure is used for the "Report Templates->Workload Analyzer" reports. This procedure returns the data in html
format.
sp_workload_analyzer_drilldown
This procedure is used for the "Report Templates->Workload Analyzer" drill-down reports.
virtualclientsummary
This procedure is used for the "Report Templates->Client Reports->Virtual Client Summary" report. This procedure returns
details of the VMware or HyperV servers that are configured with NetBackup. It also shows whether these virtual machines
are protected by NetBackup or not.
IndexIndex
☛ view_UserGroup
☛ virtualclientsummary