Ways to reduce log file size in SQL Server share _mssql

Source: Internet
Author: User

First of all
Use [database name];
exec sp_helpfile;

Use the sp_helpfile query to know the logical name of the log file, and then you can use DBCC to reduce the log file
BACKUP LOG [database name] WITH TRUNCATE_ONLY
DBCC SHRINKFILE (logical name of log file],1)

This method is no longer applicable in MS SQL Server 2008 and MS SQL Server 2008 R2, prompting: TRUNCATE_ONLY is not a valid BACKUP option.

This should be done in the following ways:

Copy Code code as follows:

--First change the recovery mode of the database to simple
ALTER database [database name] SET RECOVERY simple;
Go
--Reduce log file to 1M, logical name can be obtained by sp_helpfile
DBCC shrinkfile ([log file logical name], 1);
Go
--Reset the recovery model for the database
ALTER DB [database name] SET RECOVERY full;
Go

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.