摘要:
1// FCKeditor_OnComplete is a special function that is called when an editor
2// instance is loaded ad available to the API. It must be named exactly in
3// this way.
阅读全文
摘要:
SQL SERVER 查看死锁的存储过程
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[sp_who_lock]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
drop procedure [dbo].[sp_who_lock]
GO
.... 阅读全文