Corporate Programming Sucks
Does it suck to be a corporate programmer? Joel Spolsky things so, but Steve Jones takes issue with it.
2008-01-03
355 reads
Does it suck to be a corporate programmer? Joel Spolsky things so, but Steve Jones takes issue with it.
2008-01-03
355 reads
What will happen in the job market for DBAs this year? Steve Jones gives a few opinions based on what is happening in the industry.
2008-01-02
437 reads
It's important that you manage your career and not just leave it to chance. Steve Jones talks about what you might do to ensure that you'll be successful in the IT world.
2007-12-31
581 reads
2007-12-28
102 reads
How anonymous are your ratings and other opinions on the Internet? Not as much as you might think.
2007-12-27
202 reads
Steve Jones takes a look at what's happening in the world of alternative energy, including cleaner nuclear power and energy from motion.
2007-12-26
55 reads
Complying with software licensing is something you should do, but how far should companies take this?
2007-12-24
138 reads
What would you recommend for the holidays next week when the office is closed.
2007-12-21
109 reads
2007-12-20
1,901 reads
Test data is critical to being sure your application works, but is production data ok to use in test environments?
2007-12-19
516 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