SQLServer2005 的查询独占模拟
程序员文章站
2022-06-02 16:38:27
...
这个问题一直被很多人关注,基本上得到的答案是两种倾向,一种是锁一种是给记录打标记(也就是update)。
对于应用来说,我并不提倡人为给记录加锁,这样会惹来很多麻烦,况且锁并不能解决所有问题,如果你有这方面好的经验我们可以进一步交流。对于应用来说,我并不提倡人为给记录加锁,这样会惹来很多麻烦,况且锁并不能解决所有问题,如果你有这方面好的经验我们可以进一步交流。
代码如下:
set nocount on
use tempdb
go
if (object_id ('tb' ) is not null )
drop table tb
go
create table tb (id int identity (1 , 1 ), name varchar (10 ), tag int default 0 )
insert into tb (name ) select 'a'
insert into tb (name ) select 'b'
insert into tb (name ) select 'c'
insert into tb (name ) select 'd'
insert into tb (name ) select 'e'
go
update top (2 ) tb with (rowlock , readpast ) set tag = 1 output inserted . id , inserted . name where tag = 0
go
update top (2 ) tb with (rowlock , readpast ) set tag = 1 output inserted . id , inserted . name where tag = 0
go
update top (2 ) tb with (rowlock , readpast ) set tag = 1 output inserted . id , inserted . name where tag = 0
go
set nocount off
/*
id name
----------- ----------
1 a
2 b
id name
----------- ----------
3 c
4 d
id name
----------- ----------
5 e
*/
如果你有更好的建议,我们不妨探讨一下。
上一篇: Hibernate 入门 练习
下一篇: JavaScript趣题:建房子
推荐阅读
-
SqlServer2005中使用row_number()在一个查询中删除重复记录的方法
-
SQLSERVER2005 中树形数据的递归查询
-
SQLServer2005 的查询独占模拟
-
查询SQLServer2005中某个数据库中的表结构、索引、视图、存储过
-
查询SQLServer2005中某个数据库中的表结构、索引、视图、存储过
-
急用snoopy抓取EMS验证码,远程模拟查询单号,无法获取JSessionID的有关问题
-
SQLServer2005的查询独占模拟
-
SqlServer2005中使用row_number()在一个查询中删除重复记录的方法
-
SQLSERVER2005 中树形数据的递归查询
-
SQLServer2005的查询独占模拟