`
文章列表
find -type f |wc -l

删除锁表

--查询锁表进程 select   request_session_id   spid,OBJECT_NAME(resource_associated_entity_id) tb_mobile_SPGZInfo   from   sys.dm_tran_locks where resource_type='OBJECT' --删除 declare @spid  int Set @spid  = 59 --锁表进程 declare @sql varchar(1000) set @sql='kill '+cast(@spid  as varchar) exec(@sql)
Global site tag (gtag.js) - Google Analytics