|
|
|
Old Hand
      
Group: General Forum Members
Last Login: Sunday, February 17, 2013 2:38 AM
Points: 369,
Visits: 392
|
|
|
|
|
|
Ten Centuries
      
Group: General Forum Members
Last Login: Thursday, May 16, 2013 7:34 AM
Points: 1,196,
Visits: 290
|
|
This is no longer true in SQL Server 2005...
Regards, Hans Lindgren
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Thursday, April 11, 2013 7:39 AM
Points: 1,
Visits: 91
|
|
I have sql2008 r2 with READ_COMMITTED_SNAPSHOT ON. So, default database isolation level is read commited with row versioning.
If i try this:
--first connection BEGIN TRAN SELECT 1 AS test INTO dbo.test
--second connection SELECT * FROM SYSOBJECTS OR SELECT * FROM SYSOBJECTS WITH (NOLOCK) WHERE NAME LIKE '%test%' This wont work.
So, the sys.objects is not available even if I have snapshot isolation with row versioning. Is there any solution? I would like to read from sys.objects and test table should not be visible there until commit of first connection.
lp,S
|
|
|
|