Please enter search query.
Search <book_title>...
Enterprise Vault™ Using SQL Database Roles in Enterprise Vault, Compliance Accelerator, and Discovery Accelerator
Last Published:
2021-03-23
Product(s):
Enterprise Vault (14.1, 14.0, 12.5, 12.4, 12.3, 12.2, 12.1, 12.0)
- About this guide
- Using Enterprise Vault database roles
- Configuring the Vault Service account for normal operations
- Using Compliance Accelerator and Discovery Accelerator roles
- Configuring the Vault Service account for normal operations
Changing ownership of Enterprise Vault databases
After a normal installation or upgrade of Enterprise Vault, the Vault Service account owns all Enterprise Vault's databases. As a result, the Vault Service account is a member of the db_owner fixed database role, which is not required for normal daily operations.
Use the following procedure and run one of these queries against each Enterprise Vault database, to assign ownership to another privileged user. Choose the procedure that is appropriate for your version of SQL Server.
use EVDatabase GO ALTER AUTHORIZATION ON DATABASE:: EVDatabase TO [domain\privileged_user];
or
use EVDatabase GO EXECUTE sp_changedbowner 'domain\privileged_user'
Where:
EVDatabase is the name of the Enterprise Vault database.
domain\privileged_user is the privileged user and the domain to which it belongs.
To change ownership of Enterprise Vault databases
- Connect to the SQL server using SQL Server Management Studio.
- Click New Query and then enter the query in the query editor window.
- From the Query menu, click Execute, and then wait for the script to complete.
- Repeat this procedure for all the other Enterprise Vault databases.