Partitioning Relational Data – (Part – 3)
This is the third part of the three part article series on partitioning relational data.
In the first part of this...
2013-02-23
571 reads
This is the third part of the three part article series on partitioning relational data.
In the first part of this...
2013-02-23
571 reads
Checkout the third part of my XML support and SQL Server article series here.
In this part, I talked about the...
2013-02-11
681 reads
Today, I received an email from the development team complaining why they have not received any of the SQL Agent...
2013-02-11
4,469 reads
This is the second part of the three part article series on partitioning relational data.
In the first part of this...
2013-02-05
701 reads
From time to time, I see the following question posted on various SQL forums asking how we can determine the...
2013-01-14
4,342 reads
A common requirement for dealing with large datasets is the ability to split the data into smaller blocks to help...
2013-01-08
1,013 reads
When creating XML documents, you must work from a design that defines the structure of the document. This strengthens the...
2013-01-08
988 reads
You can use the sp_spaceused system-stored procedure to return space usage information about a database or a table within a...
2013-01-02
1,510 reads
Database infrastructure security is extremely crucial for any organization, which is why Microsoft has invested heavily in SQL Server security...
2012-12-11
1,177 reads
Today, I received a phone call from a friend who is thinking to downgrade the database hosted in SQL Server...
2012-12-11
661 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...
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...
Comments posted to this topic are about the item Working with JSON/JSONB Data in...
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