摘要:
增加异常处理 try ... catch SET XACT_ABORT ON -- 打开try功能 BEGIN TRY begin tran insert into Sys_DocClass values(...) --数据表操作语句 commit tran --提交事务 print 'commited' END TRY BEGIN CATCH rollback ... 阅读全文
摘要:
. 分页查询数据 --查询到行的结果 select * from( select ID,DocClassName,DocClassDesc, ROW_NUMBER() OVER(order by ID) as row from Sys_DocClass ) a where row between 20 and 30 阅读全文
摘要:
使用存储过程终止: 在查询分析器下创建终止数据库所有接连的存储过程,通过调用该存储过程可以关闭所有使用该数据库的连接操作。 --创建终止使用数据库下所有进程的存储过程,参数为数据库名称 use master go create proc KillSpByDbName(@dbname varchar(20)) as begin declare @sql nv... 阅读全文
摘要:
按全文匹配方式查询 字段名 LIKE N'%[^a-zA-Z0-9]China[^a-zA-Z0-9]%' OR 字段名 LIKE N'%[^a-zA-Z0-9]China' OR 字段名 LIKE N'China[^a-zA-Z0-9]%' OR 字段名 LIKE N'China 阅读全文