Azure IP Advantage
In today’s Azure Every Day post, I’d like to talk about something a little different from our normal posts, and...
2018-10-04
208 reads
In today’s Azure Every Day post, I’d like to talk about something a little different from our normal posts, and...
2018-10-04
208 reads
Today I’d like to talk about the Azure Relational Data Services Platform. This is an important foundational component for many...
2018-10-03
728 reads
Is your company working on ways to become more environmentally friendly? Taking care of the environment is an important topic,...
2018-10-02
220 reads
Today I’d like to talk about integration with Azure Logic Apps and how they can help your organization to do...
2018-10-01
297 reads
In this final post of my Azure Cognitive Services week of Azure Every Day, I’ll focus on the Vision APIs...
2018-09-28
298 reads
This week in my Azure Every Day posts, I’ve been focusing on Azure Cognitive Services and what these features can...
2018-09-27
315 reads
In today’s post focusing on Azure Cognitive Analytics, I’ll look at the Language Analytics APIs that are available. These language...
2018-09-26
343 reads
This week’s Azure Every Day posts are focused on the different APIs available within Azure Cognitive Services. Today I’ll focus...
2018-09-25
186 reads
Throughout this week’s Azure Every Day blog posts, I’ll focus on different APIs available with Azure Cognitive Services. With Azure...
2018-09-24
264 reads
Today I’m talking more about integration with Flow within Azure. Flow is focused around business power users who need to...
2018-09-21
271 reads
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,...
By DesertDBA
I haven’t posted in a while (well, not here at least since I’ve been...
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...
Comments posted to this topic are about the item The Read Committed Snapshot Isolation...
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