2011年9月5日

kill sql数据库死锁进程

摘要: 1 Create Proc Sp_KillAllProcessInDB 2 3 @DbName VarChar(100) 4 5 as 6 7 if db_id(@DbName) = Null 8 9 begin10 11 Print 'DataBase dose not Exist'12 13 end14 15 else16 17 18 Begin19 20 Declare @spId Varchar(30)21 22 23 DECLARE TmpCursor CURSOR FOR24 25 Select 'Kill ' + convert(Varchar, 阅读全文

posted @ 2011-09-05 15:51 sajiao 阅读(1533) 评论(0) 推荐(0) 编辑

.net网站发布后,有时候就会出现问题

摘要: 网站发布后,有时候就会出现问题Session state has created a session id, but cannot save it because the response was already flushed by the application解决方案:在调用Response.Flush()后马上调用Response.End();这样请求就不会继续执行了 阅读全文

posted @ 2011-09-05 15:47 sajiao 阅读(192) 评论(0) 推荐(0) 编辑

sql数据类型比较

摘要: sql数据类型比较 阅读全文

posted @ 2011-09-05 15:46 sajiao 阅读(440) 评论(0) 推荐(0) 编辑

导航

街边网