zoukankan      html  css  js  c++  java
  • SqlServer 清空日志

    --清空日志    
    USE [master]
         ALTER DATABASE his2020 SET RECOVERY SIMPLE WITH NO_WAIT   ----blog为需要清除日志的数据库名称
         ALTER DATABASE his2020 SET RECOVERY SIMPLE   --简单模式   ----blog为需要清除日志的数据库名称
         
    USE his2020     ----blog为需要清除日志的数据库名称
         DBCC SHRINKFILE (N'his2020_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
  • 相关阅读:
    解决eclipse maven 项目重新下载包这个问题
    Python猴子补丁
    浅谈服务治理与微服务
    微服务
    Tornado部署与运行
    tornado部署
    【测试】Gunicorn , uWSGI同步异步测试以及应用场景总结
    以gevent(协程) 方式跑uwsgi服务
    uwsgi配置理解
    python Web开发你要理解的WSGI & uwsgi详解
  • 原文地址:https://www.cnblogs.com/mapstar/p/13187014.html
Copyright © 2011-2022 走看看