随笔分类 -  数据库

摘要:1 declare proccur cursor 2 for 3 select [name] from sysobjects where type='P' and [name] like '%废%' 4 declare @procname varchar(100) 5 open proccur 6 fetch next from proccur into @procname 7 w... 阅读全文
posted @ 2019-12-09 10:23 IT小丑 阅读(517) 评论(0) 推荐(0)
摘要:早上莫名其妙就被单用户了不知道什么原因,用了以下处理办法解决了 1、先把SQLServer服务停止重启一下 2、执行以下脚本 阅读全文
posted @ 2019-11-27 10:24 IT小丑 阅读(9654) 评论(0) 推荐(1)