2006-05-02
1,353 reads
2006-05-02
1,353 reads
2006-05-01
1,168 reads
2006-04-28
1,275 reads
A Friday distraction from work when you have time. Can you figure out who has the dual 19" LCD monitors?
2006-04-28
9,453 reads
2006-04-27
1,146 reads
2006-04-26
1,918 reads
A few weeks ago we had a failure on the web site. Actually a hard failure, a BSOD, which I...
2006-04-25
1,382 reads
2006-04-25
1,374 reads
2006-04-24
1,351 reads
After a bit of a hiatus, the interviews are back. This time we take a few minutes with Dan Jones of the SQL Server development team.
2006-04-24
5,727 reads
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...
If you’ve been watching AI roll through the data community and thinking, “this seems...
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