Vault's SQL Server database options (Performance Tweak)

A collection of information about Vault, including solutions to common problems.

Moderator: SourceGear

Post Reply
jclausius
Posts: 3702
Joined: Tue Dec 16, 2003 1:17 pm
Location: SourceGear
Contact:

Vault's SQL Server database options (Performance Tweak)

Post by jclausius » Fri Jan 02, 2015 1:51 pm

Vault 6 and later installers for the Vault Server will temporarily turn off some SQL Server database options in order to perform any database upgrades. For some installations, there have been reports where the database options are not restored once the installation has completed.

If you are experiencing poor performance with Vault, you may want to check the database options for Auto Update Statistics Asynchrously, Auto Update Statistics, and Auto Create Statistics is turned on. You can also run the following queries within SQL Server Management Studio to turn on these database options.

Vault Server Standard:

Code: Select all

ALTER DATABASE sgmaster SET AUTO_UPDATE_STATISTICS_ASYNC ON
GO
ALTER DATABASE sgmaster SET AUTO_UPDATE_STATISTICS ON
GO
ALTER DATABASE sgmaster SET AUTO_CREATE_STATISTICS ON
GO

ALTER DATABASE sgvault SET AUTO_UPDATE_STATISTICS_ASYNC ON
GO
ALTER DATABASE sgvault SET AUTO_UPDATE_STATISTICS ON
GO
ALTER DATABASE sgvault SET AUTO_CREATE_STATISTICS ON
GO

ALTER DATABASE sgvaultindex SET AUTO_UPDATE_STATISTICS_ASYNC ON
GO
ALTER DATABASE sgvaultindex SET AUTO_UPDATE_STATISTICS ON
GO
ALTER DATABASE sgvaultindex SET AUTO_CREATE_STATISTICS ON
GO

ALTER DATABASE sgnotify SET AUTO_UPDATE_STATISTICS_ASYNC ON
GO
ALTER DATABASE sgnotify SET AUTO_UPDATE_STATISTICS ON
GO
ALTER DATABASE sgnotify SET AUTO_CREATE_STATISTICS ON
GO
Jeff Clausius
SourceGear

Post Reply