Adding or removing ALTER ANY LOGIN permission for the Vault Service account

If the Enterprise Vault databases are on Microsoft SQL Server 2008, you must grant ALTER ANY LOGIN permission to the Vault Service account before you run the Reporting Configuration utility. You may remove this permission from the Vault Service account when you have quit the Reporting Configuration utility.

To add 'ALTER ANY LOGIN' permission to the Vault Service account

  1. Start SQL Server Management Studio.

  2. In the toolbar, click New Query.

  3. Enter the following script:

    use Master
    GRANT ALTER ANY LOGIN TO "domain\vsa_account"
    GO
    

    where domain\vsa_account is the domain and name of the Vault Service account.

  4. Click Execute.

To remove 'ALTER ANY LOGIN' permission from the Vault Service account

  1. Start SQL Server Management Studio.

  2. In the toolbar, click New Query.

  3. Enter the following script:

    use Master
    REVOKE ALTER ANY LOGIN FROM "domain\vsa_account" CASCADE
    GO
    

    where domain\vsa_account is the domain and name of the Vault Service account.

  4. Click Execute.