SQL Server数据库日志清除

数据库 SQL Server
SQL Server数据库的操作可能会产生一些没用的日志文件,在数据库中也是占内存,没什么用,这时就要将那些没用的日志给清除掉,以保证SQL Server数据库有更大容量,可以储存更过有用的数据。

SQL Server数据库日志清除的两个方法:

方法一

一般情况下,SQL数据库的收缩并不能很大程度上减小数据库大小,其主要作用是收缩日志大小,应当定期进行此操作以免数据库日志过大。

1、设置数据库模式为简单模式:打开SQL企业管理器,在控制台根目录中依次点开microsoft SQL Server-->SQL Server组-->双击打开你的服务器-->双击打开数据库目录-->选择你的数据库名称(如论坛数据库forum)-->然后点击右键选择属性-->选择选项-->在故障还原的模式中选择“简单”,然后按确定保存。

2、在当前数据库上点右键,看所有任务中的收缩数据库,一般里面的默认设置不用调整,直接点确定

3、收缩数据库完成后,建议将您的数据库属性重新设置为标准模式,操作方法同***点,因为日志在一些异常情况下往往是恢复数据库的重要依据。

方法二

以下为引用的内容:

set nocount on
declare @logicalfilename sysname,
@maxminutes int,
@newsize int

use tablename
-- 要操作的数据库名
select @logicalfilename = 'tablename_log',
-- 日志文件名
@maxminutes = 10,
-- limit on time allowed to wrap log.
@newsize = 1
-- 你想设定的日志文件的大小(m)

-- setup / initialize
declare @originalsize int
select @originalsize = size
from sysfiles
where name = @logicalfilename
select 'original size of ' + db_name() + ' log is ' +
convert(varchar(30),@originalsize) + ' 8k pages or ' +
convert(varchar(30),(@originalsize*8/1024)) + 'mb'
from sysfiles
where name = @logicalfilename
create table dummytrans
(dummycolumn char (8000) not null)

declare @counter int,
@starttime datetime,
@trunclog varchar(255)
select @starttime = getdate(),
@trunclog = 'backup log '
+ db_name() + ' with truncate_only'

dbcc shrinkfile (@logicalfilename, @newsize)
exec (@trunclog)
-- wrap the log if necessary.
while @maxminutes > datediff
(mi, @starttime, getdate()) -- time has not expired
and @originalsize =
(select size from sysfiles where name = @logicalfilename)
and (@originalsize * 8 /1024) > @newsize
begin -- outer loop.
select @counter = 0
while ((@counter < @originalsize / 16) and (@counter < 50000))
begin -- update
insert dummytrans values ('fill log')
delete dummytrans
select @counter = @counter + 1
end
exec (@trunclog)
end
select 'final size of ' + db_name() + ' log is ' +
convert(varchar(30),size) + ' 8k pages or ' +
convert(varchar(30),(size*8/1024)) + 'mb'
from sysfiles
where name = @logicalfilename
drop table dummytrans
set nocount off
 

上文介绍了SQL Server数据库日志清除的两种方法,如果大家有更多的好方法,欢迎那出来与我们一起分享。

【编辑推荐】

  1. SQL Server无日志恢复数据库(一)
  2. SQL Server无日志恢复数据库(二)
  3. SQL Server Compact Edition启用日志记录
  4. 删除SQL Server大容量日志的方法

 

责任编辑:迎迎 来源: 赛迪网
相关推荐

2010-07-15 17:28:50

SQL Server

2011-08-09 17:24:21

SQL Server 数据库日志

2011-04-01 09:17:36

SQL Server数据库

2011-04-01 09:31:01

SQL Server数据库

2010-07-07 16:46:52

SQL Server日

2010-07-08 11:05:14

SQL Server数

2010-07-08 13:13:14

清除SQL Serve

2021-05-17 06:57:34

SQLServer数据库

2010-07-01 12:44:52

SQL Server数

2010-09-02 11:56:21

SQL删除

2011-07-15 15:55:50

SQL Server日附加数据库

2010-06-28 09:43:05

SQL Server数

2010-06-30 11:16:50

SQL Server

2011-04-29 14:30:23

2009-03-19 09:44:07

SQL Server数据库迁移数据库

2011-03-21 10:13:31

Sql Server数分区

2011-03-24 09:07:11

SQL Server数备份

2021-03-18 08:20:19

SQLServer数据库SQL

2011-03-24 09:45:34

SQL Server数恢复

2011-03-24 09:24:08

SQL Server数还原
点赞
收藏

51CTO技术栈公众号