• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    SQLServer2005 的查询独占模拟
    对于应用来说,我并不提倡人为给记录加锁,这样会惹来很多麻烦,况且锁并不能解决所有问题,如果你有这方面好的经验我们可以进一步交流。
    对于应用来说,我并不提倡人为给记录加锁,这样会惹来很多麻烦,况且锁并不能解决所有问题,如果你有这方面好的经验我们可以进一步交流。
    复制代码 代码如下:

    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
    */

    如果你有更好的建议,我们不妨探讨一下。
    上一篇:一个删除指定表的所有索引和统计的过程
    下一篇:SQLServer2005 中的几个统计技巧
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    SQLServer2005 的查询独占模拟 SQLServer2005,的,查询,独占,