MS SQL SERVER Database log compression method and code _mssql

Source: Internet
Author: User
MS SQL is good, but after a while, the database becomes large and the actual amount of data is small. Are generally caused by the database log! The database log grows up to hundreds of M.
The online MSSQL virtual host price is also expensive, to want to not allow the database to exceed the capacity, had to compress the database log, or delete the database log.
Now let me introduce you to a method
1. Open Enterprise Manager
2, open the database to be processed
3. Click menu > Tools >sql Query Analyzer
4, enter in the input window:

Copy Code code as follows:

DUMP TRANSACTION [database name] with NO_LOG
BACKUP LOG [database name] with NO_LOG
DBCC shrinkdatabase ([database name])
Click Execute! In this way, the database is working successfully.
The method inside the program:
Compress database logs
--1. Empty log
EXEC (' DUMP TRANSACTION [' + @dbname + '] with no_log ')
--2. Truncate the transaction log:
EXEC (' BACKUP LOG [' + @dbname + '] with no_log ')
--3. Shrink the database file (if not compressed, the database file will not be reduced
EXEC (' DBCC shrinkdatabase ([' + @dbname + ']) ')

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.