码迷,mamicode.com
首页 > 数据库 > 详细

SqlServer 清空日志

时间:2020-06-24 14:23:57      阅读:67      评论:0      收藏:0      [点我收藏+]

标签:pen   from   模式   iat   use   存在   trunc   insert   ase   

--清空日志    
USE [master]
     ALTER DATABASE his2020 SET RECOVERY SIMPLE WITH NO_WAIT   ----blog为需要清除日志的数据库名称
     ALTER DATABASE his2020 SET RECOVERY SIMPLE   --简单模式   ----blog为需要清除日志的数据库名称
     
USE his2020     ----blog为需要清除日志的数据库名称
     DBCC SHRINKFILE (Nhis2020_Log , 11, TRUNCATEONLY)    ----blog_Log为需要清除日志的数据库名日志名称
     
USE [master]
     ALTER DATABASE his2020 SET RECOVERY FULL WITH NO_WAIT   ----blog为需要清除日志的数据库名称
     ALTER DATABASE his2020 SET RECOVERY FULL  --还原为完全模式   ----blog为需要清除日志的数据库名称
--查锁表进程
select
request_session_id spid,OBJECT_NAME(resource_associated_entity_id) tableName from sys.dm_tran_locks where resource_type=OBJECT
--杀进程 declare @spid int Set @spid = 101 --锁表进程 declare @sql varchar(1000) set @sql=kill +cast(@spid as varchar) exec(@sql)
--已存在表 os_operator
insert into os_operator(ope_code,open_mac,myrloe_code,rloe_code) select pass_operator,1,[],0 from ITSV.his.dbo.aps_operator_pass

--不存在表 os_operator
select * into os_operator from ITSV.his.dbo.aps_operator_pass

 

SqlServer 清空日志

标签:pen   from   模式   iat   use   存在   trunc   insert   ase   

原文地址:https://www.cnblogs.com/mapstar/p/13187014.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!