|
|
|
BlueCielo Meridian Enterprise 2012 Administrator's Guide | BlueCielo ECM Solutions |
Depending on the configuration of SQL Server, the SQL Server database log file (.LDF file, not to be confused with the Meridian write-ahead .LOG files) of a Meridian vault can become very large (up to 100 GB). The reason for this is that the default recovery method of SQL Server is Full. If your organization allows the use of the Simple recovery mode, you can truncate the SQL Server log file to optimize performance.
Warning Do not change the properties of a SQL Server database that is used by Meridian. Especially do not clear the Unrestricted file growth options for Maximum file size for either the data files or the transaction log because when the maximum size of the log file is reached, SQL Server cannot write to the database any more, as it is full.
To minimize the SQL Server log file size:
BACKUP LOG <DatabaseName> WITH TRUNCATE_ONLY
DBCC SHRINKDATABASE (<DatabaseName>, TRUNCATEONLY)
This compresses the .LDF file. You can now change the recovery mode to prevent the log from growing again in the future.
Query the current recovery mode by pasting this script into the editor and replacing <DatabaseName> with the same database name you used above:
SELECT DATABASEPROPERTY('<DatabaseName>', 'ISTRUNCLOG')
SELECT DATABASEPROPERTYEX('<DatabaseName>', 'RECOVERY')
ALTER DATABASE <DatabaseName> SET RECOVERY SIMPLE
If the log file continues to grow after you’ve implemented these changes, consult a SQL Server database administrator to determine whether other SQL Server settings need to be modified to correct this behavior.
Related concepts
Integrating Meridian with SQL Server
Understanding how Meridian works with SQL Server
Understanding vault cache memory
Understanding SQL Server vault backups
Related tasks
Integrating with a separate SQL Server computer
Configuring the Windows account used by Meridian
Creating a SQL Server account for use by Meridian
Configuring the SQL Server account used by Meridian
Migrating a Hypertrieve vault to SQL Server
Moving a SQL Server vault to a different folder
Copyright © 2000-2012 BlueCielo ECM Solutions |