Un-retiring
Would you leave technology and come back to it as a career? It seems that many people are afraid of doing it, but Steve Jones talks about why it shouldn't matter.
2008-08-05
156 reads
Would you leave technology and come back to it as a career? It seems that many people are afraid of doing it, but Steve Jones talks about why it shouldn't matter.
2008-08-05
156 reads
This week's Database Weekly editorial examines the US policy of potentially seizing laptops for an infinite period when you enter the country.
2008-08-04
116 reads
Steve Jones talks about the changing capabilities and flexibilities of data centers as technologies change.
2008-08-04
110 reads
This Friday Steve Jones talks about the social networking phenomenon and asks how it should affect your career?
2008-08-01
150 reads
You are hired for your ideas so share them, it can only help your career.
2008-07-31
182 reads
A guest editorial from Scott White that looks at the use of stored procedures from a developer's point of view.
2008-07-30
1,345 reads
With the price of gas rising and no end in sight. Steve Jones steps back to talk a bit about what solutions there might be to ease the burdens on everyone.
2008-07-29
119 reads
Developers tend to be lazy in Steve Jones' view. This week he examines some of the problems that this lack of effort can cause in applications.
2008-07-28
498 reads
Steve Jones talks about how IT hasn't changed very much over the years and how your career might not be that different in ten years.
2008-07-28
201 reads
A Friday poll from Steve Jones looks at service accounts and how you deal with passwords.
2008-07-25
776 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,...
Comments posted to this topic are about the item The AI Bubble and the...
Hi, in a simple oledb source->derived column->oledb destination data flow, 2 of my...
hi, i noticed the sqlhealth extended event is on by default , and it...
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