Home >Database >Mysql Tutorial >SQLServer清除日志的方法

SQLServer清除日志的方法

WBOY
WBOYOriginal
2016-06-07 15:26:291377browse

清除SQL2005日志的语句: BackupLog数据库名withno_log go dump transaction 数据库名 with no_log go USE 数据库名 DBCC SHRINKFILE ( 2 ) Go -- ------------------------------------------------------------ 在SQL2008中清除日志就必须在简单模式下进行

清除SQL2005日志的语句:

Backup Log 数据库名 with no_log

go
dump transaction 数据库名 with no_log
go
USE 数据库名
DBCC SHRINKFILE (2)
Go
--------------------------------------------------------------
在SQL2008中清除日志就必须在简单模式下进行,等清除动作完毕再调回到完全模式。
USE [master]
    
GO
    
ALTER DATABASE DNName SET RECOVERY SIMPLE WITH NO_WAIT
    
GO
    
ALTER DATABASE DNName SET RECOVERY SIMPLE   --简单模式
    GO
    
USE DNName 
    
GO
    
DBCC SHRINKFILE (N'DNName_Log' , 11, TRUNCATEONLY)
    
GO
    
USE [master]
    
GO

    
ALTER DATABASE DNName SET RECOVERY FULL WITH NO_WAIT

    
GO

    
ALTER DATABASE DNName SET RECOVERY FULL  --还原为完全模式

    
GO

执行完毕后,即可看到被缩减后的日志大小。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn