• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

Automatically Truncate MS SQL Log Files?

eugenevdm

Regular Pleskian
How can I automatically truncate the MS SQL log files on all our Plesk servers? The problem is these files grow infinitely and then client moan because they get traffic warning.

Ideally I want to put a limit on this or automatically truncate them on a regular basis. We have quite a few servers so automation is essential. Maybe there is some default I can change?

For now I have to manually log in to the server and do this:
declare @dbname nvarchar(255)
set @dbname = 'db_name'
backup log @dbname with truncate_only
DBCC SHRINKDATABASE (@dbname, 0)
 
Just a minor update. Plesk allows log files to grow to 2 GB by default on MS-SQL.

On SQL 2008 you have to do:

Code:
declare @dbname nvarchar(255)
set @dbname = 'bigboysdb'
backup log @dbname to disk='NUL'
DBCC SHRINKDATABASE (@dbname, 0)
 
Back
Top