欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Sql Server2014数据库清理日志

程序员文章站 2022-03-12 19:57:08
Sql Server2014数据库日志占用特别大,清理方法。直接贴代码 USE[master] GO ALTER DATABASE db_Name SET RECOVERY SIMPLE WITH NO_WAIT GO ALTER DATABASE db_Name SET RECOVERY SIMP... ......

sql server2014数据库日志占用特别大,清理方法。直接贴代码

    use[master]
    go
    alter database db_name set recovery simple with no_wait
    go
    alter database db_name set recovery simple   --简单模式
    go
    use db_name 
    go
    dbcc shrinkfile (n'db_name_log' , 11, truncateonly)
    go
    use[master]
    go


    alter database db_name set recovery full with no_wait


    go


    alter database db_name set recovery full  --还原为完全模式


    go