Please enter search query.
Search <book_title>...
NetBackup™ for Microsoft SQL Server Administrator's Guide
Last Published:
2024-03-27
Product(s):
NetBackup & Alta Data Protection (10.4)
- Introducing NetBackup for SQL Server
- Installation
- Host configuration and job settings
- Managing SQL Server objects for use with SQL Server Intelligent Policies
- About discovery of SQL Server objects
- About registering SQL Server instances and availability replicas
- Registering instances or availability replicas with an instance group
- Configuring backups with SQL Server Intelligent Policy
- About tuning parameters for SQL Server backups
- Performing restores of SQL Server
- Redirecting a SQL Server database to a different host
- Protecting SQL Server data with VMware backups
- About protecting an application database with VMware backups
- Configuring backups with Snapshot Client
- Using copy-only snapshot backups to affect how differentials are based
- About SQL Server agent grouped snapshots
- Protecting SQL Server availability groups
- Protecting SQL Server availability groups with intelligent policies
- Protecting SQL Server availibility groups with legacy policies
- About protecting the preferred replica in a SQL Server availability group (legacy backup policies)
- About protecting a specific node in a SQL Server availability group (legacy backup policies)
- About protecting the preferred replica in a SQL Server availability group (legacy backup policies)
- Protecting SQL Server in a cluster environment
- Configuring backups with legacy SQL Server policies using clients and batch files
- About using batch files with NetBackup for SQL Server
- About schedule properties
- Performing user-directed backups of SQL Server databases
- Performing user-directed backups of read-only filegroups
- Using NetBackup for SQL Server with multiple NICs
- Performance and troubleshooting
- About debug logging for SQL Server troubleshooting
- About disaster recovery of SQL Server
- Appendix A. Other configurations
- About SQL Server backups and restores in an SAP environment
- About NetBackup for SQL Server with database mirroring
- Appendix B. Register authorized locations
Configure NetBackup for the SQL Server non-readable secondary instances that are hidden
To support the non-readable secondary instances that are hidden, additional configuration is required. No configuration on the secondary provides the port number of the primary to NetBackup, so the NetBackup user must provide it. These settings are configured in the host properties for the client and can only be configured with the hostProperties API endpoint or the bpsetconfig command.
Note:
The RBAC role bpsetconfig command to make the host property changes.
does not have permissions to edit the host properties. Alternatively, workload administrators can log on locally to the host and use theThis entry is a multi-string entry. Each entry is in the form that is normally used to connect to the instances with SQL Server utilities: host\instance,port
host-properties API example
https://{{host}}/netbackup/config/hosts/{{host-uuid}}/host-properties "clientMssql": { "trustServerCertificate": true, "preferredODBCDriver": [ "OLDEST" ], "configList": [ "host16vm5\\SQL2K22,1633", "host16vm6\\SQL2K22,1634" ], "encrypt": true }
host-properties patch API example
patch: https://{{host}}/netbackup/config/hosts/{{host-uuid}}/host-properties { "data": { "type": "hostProperties", "id": "{{host-uuid}}", "attributes": { "clientMssql": { "configList": [ "host16vm5\\SQL2K22,1633", "host16vm6\\SQL2K22,1634" ] } } } }