本文介绍了减少C#中.ldf的大小的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

亲爱的,



如何在c#中减小.ldf文件(ldf登录sql 2008)的大小。没有脚本,如何在c#中编写代码。



感谢所有

Dear all,

How to decrease size of the .ldf file (ldf log in sql 2008) in c#. No script, how to make to code in c#.

Thanks for all

推荐答案

SQLDatabase.TransactionLog.Truncate();
SQLDatabase.Shrink(5, SQLDMO.SQLDMO_SHRINK_TYPE.SQLDMOShrink_NoTruncate);
SQLDatabase.TransactionLog.Truncate();
SQLDatabase.Shrink(5, SQLDMO.SQLDMO_SHRINK_TYPE.SQLDMOShrink_Default);







如果您要减小文件大小以归档它,那么只需编写一个程序到Zip(压缩)它,它将工作并且也将很容易。



- 谢谢Rushi




If you are decreasing file size to archiving it then simply write a program to Zip (Compress) it, it will work and will be easy also.

-- Thanks Rushi



这篇关于减少C#中.ldf的大小的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-15 10:18