SQL-收缩数据库日志文件
我正在尝试缩小我的数据库日志文件。我尝试运行:
USE databasename
BACKUP log databasename
WITH truncate_only
DBCC shrinkfile (databasename_log, 1)
我收到错误消息:
消息 155,级别 15,状态 1,第 3 行 “truncate_only”无法识别 备份选项。
我错过了什么吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为最好的方法是使用这样的脚本:
http://www.snip2code.com/Snippet/12913/How-to- Correctly-Shrink-Log-File-for-SQL
I think the best way is to use a script like this:
http://www.snip2code.com/Snippet/12913/How-to-correctly-Shrink-Log-File-for-SQL
SQL Server 2008 不再允许使用
NO_LOG
/TRUNCATE_ONLY
选项。要截断事务日志,您必须对其进行备份(真正)或将数据库的恢复模型切换为简单。后者可能才是您真正想要的。您不需要完全恢复,除非您定期进行事务日志备份以便能够恢复到中午的某个时间点。
SQL Server 2008 no longer allows the
NO_LOG
/TRUNCATE_ONLY
options.To truncate your transaction log, you either have to back it up (for real) or switch the database's Recovery Model to Simple. The latter is probably what you really want here. You don't need Full recovery unless you are making regular transaction log backups to be able to restore to some point mid-day.