SQL Server cleanup log storage process

Source: Internet
Author: User
Code Alter proc [DBO]. [cleantranlog]
As
Begin
Declare @ num tinyint -- number of executions
Declare @ backlogname varchar (100); -- backup log file name
Declare @ backlogpath varchar (100); -- path of the backup log file
Set @ num = 0;
Set @ backlogpath = n'c: \ sqlbackup '; -- set the path of the backup log.
-- Backup the Image Log File three times and delete it at the same time
While (@ num <3)
Begin
Declare @ logpath varchar (100)
Set @ backlogname = cast (@ num as varchar (2) + '. trn ';
Set @ logpath = @ backlogpath + '\' + @ backlogname
Backup log mirror to disk = @ logpath with noformat, noinit,
Name = @ backlogname, Skip, rewind, nounload, stats = 10
Set @ num = @ num + 1
-- Delete the backup log file after the trn log file is backed up.
Execute master. DBO. xp_delete_file 0, @ logpath;
End
-- Shrink the log file to 200 MB
DBCC shrinkfile (mongo_log, 2 );
End

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.