SQL2005, 2008, 2000 empty Delete log

Source: Internet
Author: User
Tags sql server query backup

The code is as follows:

Backup Log dnname with No_log ' Here's dnname is the name of the database you want to shrink, and note that by modifying the database name below, I will not comment anymore.

Go

Dump TRANSACTION dnname with NO_LOG

Go

Use Dnname

DBCC Shrinkfile (2)

Go

SQL2008 Empty Delete log:

' Clearing the log in SQL2008 must be done in simple mode, until the purge action is complete and then back to full mode.

The code is as follows:

Use [master]

Go

ALTER DATABASE dnname SET RECOVERY simple with no_wait

Go

ALTER DATABASE dnname SET RECOVERY Simplicity--Simple mode

Go

Use Dnname

Go

DBCC shrinkfile (N ' Dnname_log ', one, truncateonly)

Go

' Here's dnname_log, if you don't know what the name is in sys.database_files, you can query with the following comment statement

' Use Dnname

' Go

' SELECT file_id, Namefrom sys.database_files;

' Go

Use [master]

Go

ALTER DATABASE dnname SET RECOVERY full with no_wait

Go

ALTER DATABASE dnname SET RECOVERY Full--Revert to complete mode

Go

sqlserver2000 Compressed Log

You can make jb51.ldf files very small, make it easy to back up databases, and so on, and execute them in SQL Server Query Analyzer.

Copy code code as follows:

DUMP TRANSACTION [Dnname] with no_log

BACKUP LOG [Dnname] with no_log

DBCC shrinkdatabase ([Dnname])


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.