Enterprise Vault™ Utilities
- About this guide
- ArchivePoints
- Audit Viewer
- Backtrace
- CenteraPing
- Domino Archive Exporter
- Domino Profile Document Tool
- Domino Retention Plan Tool
- DTrace
- EVDominoExchangeMigration Tool
- Running the EVDominoExchangeMigration tool
- EVDuplicateCleaner
- EVEARemovalUtility
- EVFSASetRightsAndPermissions
- EVrights
- EVservice
- EVSPShortcutManager
- EVSVR
- About EVSVR
- About the EVSVR operation settings
- Using the output from one EVSVR operation as input for another operation
- Viewing the EVSVR output log file
- Running EVSVR in interactive mode
- FSARunNow
- FSAUndelete
- FSAUtility
- NTFS to Centera Migration
- Permissions Browser
- Policy Manager (EVPM)
- Sections and keynames in Policy Manager initialization file
- Policy Manager initialization file examples
- About using the Provisioning API to run Policy Manager scripts
- ResetEVClient
- Vault Store Usage Reporter
Improving EVSVR performance when processing CAB collections
When the following EVSVR operations process CAB collection files, they can cause high CPU usage and take a long time to complete:
DatabaseLinkages Verify
DatabaseLinkages Repair
DatabaseReferences Repair
If you experience this problem, you can markedly improve performance by creating an index for each fingerprint database that you want to verify or repair. Then, after you have run the EVSVR operation, you can either remove the index or leave it in place for when you next run the operation
Note:
Creating an index for a fingerprint database can marginally reduce archiving performance and increase the size of the database. However, you may consider these to be acceptable drawbacks if you run EVSVR regularly.
To improve EVSVR performance when processing CAB collections
- On the SQL Server computer, start SQL Server Management Studio.
- In the left pane of the SQL Server Management Studio window, expand the tree until the required fingerprint database is visible.
- Click the fingerprint database, and then click New Query.
Do one of the following:
To create an index, enter the following query and then click Execute:
DECLARE @RC int DECLARE @Create bit DECLARE @ByteRangeStart tinyint DECLARE @ByteRangeEnd tinyint DECLARE @debug bit SET @Create = 1 SET @ByteRangeStart = 0 SET @ByteRangeEnd = 255 SET @debug = 0 /* Set to 1 to view debug information */ EXECUTE @RC = [dbo].[Factory_EVSVR_Index_01] @Create, @ByteRangeStart, @ByteRangeEnd, @debug
To remove an existing index, enter the following query and then click Execute:
DECLARE @RC int DECLARE @Create bit DECLARE @ByteRangeStart tinyint DECLARE @ByteRangeEnd tinyint DECLARE @debug bit SET @Create = 0 SET @ByteRangeStart = 0 SET @ByteRangeEnd = 255 SET @debug = 0 /* Set to 1 to view debug information */ EXECUTE @RC = [dbo].[Factory_EVSVR_Index_01] @Create, @ByteRangeStart, @ByteRangeEnd, @debug