zoukankan
html css js c++ java
Sql清除MS Sql Server数据库日志
1.清空日志
DUMP TRANSACTION [DatabaseName] WITH NO_LOG
2.截断事务日志
BACKUP LOG [DatabaseName] WITH NO_LOG
3.收缩数据库文件(如果不压缩,数据库的文件不会减小)
DBCC SHRINKDATABASE([DatabaseName])
4.报告和更正 sysindexes 表的不正确内容
DBCC UPDATEUSAGE (DatabaseName)
查看全文
相关阅读:
[LeetCode] 199. Binary Tree Right Side View
[LeetCode] 360. Sort Transformed Array
[LeetCode] 146. LRU Cache
[LeetCode] 28. Implement strStr()
[LeetCode] 498. Diagonal Traverse
[LeetCode] 545. Boundary of Binary Tree
[LeetCode] 937. Reorder Data in Log Files
软件开发之我剑!软件测试, 房子的刚性需求【原】
c#调用Delphi的dll函数遇到的问题及解决方法
C# 回调函数
原文地址:https://www.cnblogs.com/13590/p/803063.html
最新文章
HDU 6212 Zuma
Johnson算法:多源最短路算法
树形dp专题总结
区间dp专题练习
牛客提高组模拟赛4
容斥专题总结
UOJ14 DZY Loves Graph
NOIP 2013货车运输
AtCoder Beginner Contest 137 F
SQL Server事务日志介绍(转)
热门文章
SQL2005数据行的二进制结构(转)
捕捉一个SQL Server会话的所有语句(转)
SQL16进制2进制,10进制(转)
Some Useful Undocumented SQL Server 7.0 and 2000 DBCC Commands(转)
[LeetCode] 452. Minimum Number of Arrows to Burst Balloons
[LeetCode] 977. Squares of a Sorted Array
[LeetCode] 55. Jump Game
[LeetCode] 45. Jump Game II
[LeetCode] 232. Implement Queue using Stacks
[LeetCode] 225. Implement Stack using Queues
Copyright © 2011-2022 走看看