3 如何在多用户模式下测试锁定类型
设table1(A,B,C)
A    B    C
a1   b1   c1
a2   b2   c2
a3   b3   c31)排它锁
新建两个连接
在第一个连接中执行以下语句
begin tran
   update table1
   set A='aa'
   where B='b2'
   waitfor delay '00:00:30'  --等待30秒
commit tran
在第二个连接中执行以下语句
begin tran
   select * from table1
   where B='b2'   
commit tran若同时执行上述两个语句,则select查询必须等待update执行完毕才能执行即要等待30秒2)共享锁
在第一个连接中执行以下语句
begin tran
   select * from table1 holdlock -holdlock人为加锁
   where B='b2' 
   waitfor delay '00:00:30'  --等待30秒
commit tran在第二个连接中执行以下语句
begin tran
   select A,C from table1
   where B='b2' 
   update table1
   set A='aa'
   where B='b2'   
commit tran若同时执行上述两个语句,则第二个连接中的select查询可以执行
而update必须等待第一个连接中的共享锁结束后才能执行 即要等待30秒3)死锁
增设table2(D,E)
D    E
d1   e1
d2   e2
在第一个连接中执行以下语句
begin tran
   update table1
   set A='aa'
   where B='b2' 
   waitfor  delay '00:00:30'
   update table2
   set D='d5'
   where E='e1' 
commit tran
   
在第二个连接中执行以下语句
begin tran
   update table2
   set D='d5'
   where E='e1' 
   waitfor  delay '00:00:10'
   update table1
   set A='aa'
   where B='b2'  
commit tran同时执行,系统会检测出死锁,并中止进程

解决方案 »

  1.   

    4 如何使用cursor数据类型
    create proc a
    @1 cursor varying out,
    @2 cursor varying out
    as
    declare b cursor local for select * from table1
    declare c cursor local for select * from table1
    open b
    open c
    set @1=b
    set @2=c
    godeclare @a cursor,@b cursorexec a @a out,@b out
    fetch @a
    fetch @b
    fetch @b
    fetch @b
    fetch @aclose @a
    close @bdeallocate @a
    deallocate @bdrop proc a
      

  2.   

    1. 如何在创建存储过程时使用varying不太懂题意,这个?create proc xx
    as
    select 2
    go
    create proc xx;1
    as
    select 1
    godrop proc xx --两个都被删除
    go
      

  3.   

    4 如何使用cursor数据类型
    (sql2000的模板)
    -- =============================================
    -- Declare and using a KEYSET cursor
    -- =============================================
    DECLARE <cursor_name, sysname, test_cursor> CURSOR
    KEYSET
    FOR <select_statement, , SELECT au_fname FROM pubs.dbo.authors>DECLARE @name varchar(40)OPEN <cursor_name, sysname, test_cursor>FETCH NEXT FROM <cursor_name, sysname, test_cursor> INTO @name
    WHILE (@@fetch_status <> -1)
    BEGIN
    IF (@@fetch_status <> -2)
    BEGIN
    -- PRINT 'add user defined code here' 
    -- eg.
    PRINT 'updating record for ' + @name
    UPDATE pubs.dbo.authors 
    SET phone = replace(phone, ' ', '-')
    WHERE CURRENT OF <cursor_name, sysname, test_cursor>
    END
    FETCH NEXT FROM <cursor_name, sysname, test_cursor> INTO @name
    ENDCLOSE <cursor_name, sysname, test_cursor>
    DEALLOCATE <cursor_name, sysname, test_cursor>
    GO
      

  4.   

    2 更新统计如何使用
    ???
    update 表  set ...  where ...
    Select a,sum(b) from ... where ... group by a having sum(b) > 100