2009-02-13
4,402 reads
2009-02-13
4,402 reads
Steve Jones takes a break today and gives you a fun reel of mistakes and bloopers.
2009-02-13
494 reads
Steve Jones takes a break today and gives you a fun reel of mistakes and bloopers.
2009-02-13
480 reads
Testing software is important, and the use of state models can help. This week Steve Jones talks about a new book that exposes software testing at Microsoft.
2009-02-13
830 reads
Testing software is important, and the use of state models can help. This week Steve Jones talks about a new book that exposes software testing at Microsoft.
2009-02-13
778 reads
Testing software is important, and the use of state models can help. This week Steve Jones talks about a new book that exposes software testing at Microsoft.
2009-02-13
774 reads
What does global warming have to do with BI? Steve Jones explains.
2009-02-12
213 reads
Someone tagged me, and I’ve lost the email in all the pile up from vacation where I was very, very...
2009-02-12
1,034 reads
What type of leadership do you want in your company? Steve Jones asks who you want to help steward you through these tough economic times.
2009-02-12
537 reads
What type of leadership do you want in your company? Steve Jones asks who you want to help steward you through these tough economic times.
2009-02-12
513 reads
By ChrisJenkins
Have you been thinking about migrating your reporting to Microsoft Fabric or Snowflake but...
The Joyful Craftsmen has become the new owner of Revolt BI. The merger creates...
By Steve Jones
It’s Prime Day. A few of my recommendations, since I want to do some...
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