2011-08-02 (first published: 2009-07-08)
9,682 reads
2011-08-02 (first published: 2009-07-08)
9,682 reads
2011-07-28 (first published: 2009-07-01)
10,455 reads
2011-07-26 (first published: 2009-06-24)
8,783 reads
2011-07-19 (first published: 2009-06-17)
9,672 reads
2011-07-14 (first published: 2009-06-10)
7,096 reads
2011-07-12 (first published: 2009-06-03)
8,712 reads
2011-07-07 (first published: 2009-05-27)
8,648 reads
: "It is a narrow mind that cannot see things from more than one point of view." —George Eliot
2011-07-05 (first published: 2009-05-20)
8,241 reads
2011-06-30 (first published: 2009-05-13)
7,310 reads
2011-06-28 (first published: 2009-05-06)
7,732 reads
By Steve Jones
Superheroes and saints never make art. Only imperfect beings can make art because art...
One feature that I have been waiting for years! The new announcement around optimize...
Following on from my last post about Getting Started With KubeVirt & SQL Server,...
hi, i noticed the sqlhealth extended event is on by default , and it...
Using New-AzSqlInstanceServerTrustCertificate to import a certificate and get the message New-AzSqlInstanceServerTrustCertificate: Long running operation...
Comments posted to this topic are about the item Refactoring SQL Code, which is...
I am currently working with Sql Server 2022 and AdventureWorks database. First of all, let's set the "Read Committed Snapshot" to ON:
use master; go alter database AdventureWorks set read_committed_snapshot on with no_wait; goThen, from Session 1, I execute the following code:
--Session 1 use AdventureWorks; go create table ##t1 (id int, f1 varchar(10)); go insert into ##t1 values (1, 'A');From another session, called Session 2, I open a transaction and execute the following update:
--Session 2 use AdventureWorks; go begin tran; update ##t1 set f1 = 'B' where id = 1;Now, going back to Session 1, what happens if I execute this statement?
--Session 1 select f1 from ##t1 where id = 1;See possible answers