本文介绍了在SQL 2008中删除/截断DN的主日志文件(.ldf)文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在测试SQL 2008中的批量数据上传。

对于我的数据库,我想删除我的默认(主要)日志文件(.ldf)并想要添加新文件。



我试图使用DB-> propertis-> files->删除选项删除它但是它给出了一个无法删除主日志文件的错误。



有任何建议吗?



提前致谢。



Neal。

I am testing bulk data uploading in SQL 2008.
For my DB, I want to remove my default (Primary) log file (.ldf) and want to add new one.

I have tried to remove it using DB->propertis->files->Remove option but its giving an error that can not remove primary log file.

Any suggestion?

Thanks in advance.

Neal.

推荐答案

USE CDCTest
GO
-- Truncate the log by changing the database recovery model to SIMPLE.
ALTER DATABASE CDCTest
SET RECOVERY SIMPLE;
GO
-- Shrink the truncated log file to 1 MB.
DBCC SHRINKFILE (CDCTest_Log, 1);
GO
-- Reset the database recovery model.
ALTER DATABASE CDCTest
SET RECOVERY FULL;
GO







此致,



Nilesh Shah




Regards,

Nilesh Shah



这篇关于在SQL 2008中删除/截断DN的主日志文件(.ldf)文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-30 07:50