首页 > 开发 > 综合 > 正文

用脚本缩小数据库日志

2024-07-21 02:08:30
字体:
来源:转载
供稿:网友


  因为客户使用的数据库时常因为日志过大而导致硬盘空间不够,或者备份出来的文件太大无法通过邮件传送。

  闲下有余,参考sqlserver的帮助文件,写了如下脚本,可以截断日志,以达到缩小文件的目的。有空大家可以在自己的sqlserver上测试下效果哦。。。:)也许对有些情况导致的日志过大没有作用,这点可以同各位同仁互相交流下。

--在master数据库中执行以下脚本(使用查询分析器)
declare @dbname varchar(50)
declare temp_cur cursor scroll for select name from sysdatabases
open temp_cur
fetch first from temp_cur into @dbname
while @@fetch_status =0
begin
  exec ('backup log '[email protected]+' with no_log')
  exec ('dbcc shrinkdatabase('[email protected]+')')
  exec ('dbcc checkcatalog ('[email protected]+')')
  exec ('dump transaction '[email protected]+' with no_log')
  fetch next from temp_cur into @dbname
end
close temp_cur
deallocate temp_cur

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表