External Access to Azure Storage
There are multiple ways to allow external access to Azure storage accounts, some better (and more secure) than others. Today,...
2018-09-07
339 reads
There are multiple ways to allow external access to Azure storage accounts, some better (and more secure) than others. Today,...
2018-09-07
339 reads
You know the talk out there, everyone is moving to the cloud and people are looking at Azure to get...
2018-09-06
281 reads
There are many advantages to using Microsoft Azure. One big reason people look at Azure is the ability to separate...
2018-09-04
398 reads
In this Azure Every Day installment, I’d like to talk about your organization’s subscription hierarchy. When working with Azure, it...
2018-09-14 (first published: 2018-08-31)
2,613 reads
When Azure Resource Manager (ARM) was created back in 2014, I (like many) thought, “What does that mean?” Up until...
2018-08-30
300 reads
So, your boss says, ‘Let’s do big data!’ And you think: ‘I don’t even know what that means or what...
2018-08-29
977 reads
Azure accounts vs. Azure subscriptions – often a topic that brings some confusion to Azure newbies. Are they the same? What’s...
2018-08-28
204 reads
Are you just starting out with Azure and wonder: What is Azure Resource Manager (ARM) Deployment Model? Or what’s the...
2018-08-27
262 reads
As you likely know, I am a Principal Consultant at Pragmatic Works. This year we have been doing some great...
2018-08-25
385 reads
Power BI Report Server was released as a way to host reports on premises. It was one of the highest...
2018-05-31
522 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...
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