Measuring the Impact of Task Switching/Multitasking
Many of us make a living by working on tasks while monitoring email, taking a few calls, and in non...
2009-04-05
469 reads
Many of us make a living by working on tasks while monitoring email, taking a few calls, and in non...
2009-04-05
469 reads
I’m aborting for now. I think I could replace the seat belts, but I don’t have the right part at...
2009-04-05
559 reads
I was looking through some of the active threads on SQLServerCentral.com tonight, and I ran across one with some code...
2009-04-04
3,644 reads
How am I doing on my New Year’s Resolutions for SQLServerCentral? I decided to make another update as Q1 has...
2009-04-03
676 reads
Steve Jones isn't usually the wild man of publishing, but on April 1st, a strangely
anarchic spirit breaks loose. Having...
2009-04-03
1,492 reads
I found How to Start a Conversation and Make Friends on the clearance rack at the local bookstore, but you...
2009-04-02
487 reads
Next Meeting - April 2, 2009
SPEAKER:Paul S. Waters
During Paul’s 16 years of working in IT, he has held a variety of...
2009-04-02
688 reads
If you have already submitted an abstract for the 2009 PASS Community Summit, or you are still thinking about it,...
2009-04-02
661 reads
If you’re available and are (or can be) in the Jacksonville FL area the first weekend of next month, check...
2009-04-02
761 reads
Just head from Greg Larsen yesterday that he just ran out of time to put things together. As I've mentioned...
2009-04-02
293 reads
By ChrisJenkins
Have you been thinking about migrating your reporting to Microsoft Fabric or Snowflake but...
By Steve Jones
It’s Prime Day. A few of my recommendations, since I want to do some...
With Fabric Mirroring, Microsoft is promoting a nice and appealing story for operational reporting...
Comments posted to this topic are about the item SQL Art, Part 4: Happy...
Comments posted to this topic are about the item Concurrency and Baseline Control: Level...
Comments posted to this topic are about the item Spending Time in the Office
I have this code on SQL Server 2022. What happens when it runs all at once?
DROP TABLE IF EXISTS dbo.Commission GO CREATE TABLE dbo.Commission (id INT NOT NULL IDENTITY(1,1) CONSTRAINT CommissionPK PRIMARY KEY , salesperson VARCHAR(20) , commission VARCHAR(20) ) GO INSERT dbo.Commission ( salesperson, commission) VALUES ( 'Brian', 12 ), ( 'Brian', 'None' ) GOSee possible answers