New Video Cards
When I want to upgrade hardware, I usually turn to Glenn Berry for advice. He’s the person I know that...
2017-01-13
534 reads
When I want to upgrade hardware, I usually turn to Glenn Berry for advice. He’s the person I know that...
2017-01-13
534 reads
2017-01-13
1,053 reads
We need better security for our data, especially for our choices in managing data.
2017-01-12
87 reads
The SQL Bits sessions are out and it’s time to vote for me. Well, vote for the sessions you’d like...
2017-01-12
464 reads
At last year’s SQL in the City, I played the part of a manual DBA making changes and deploying those...
2017-01-12 (first published: 2017-01-05)
1,561 reads
2017-01-12
927 reads
I posted this, but here it is again. A a shot from our engineer, behind the scenes of my live...
2017-01-11
549 reads
2017-01-11
179 reads
Today, Steve Jones looks at the popularity of SQL Server, which was named DBMS of 2017.
2017-01-10
142 reads
2017-01-10
1,128 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