The Right Font
I was doing some development on my laptop tonight and I was getting fed up with the default font, Courier...
2008-02-09
3,632 reads
I was doing some development on my laptop tonight and I was getting fed up with the default font, Courier...
2008-02-09
3,632 reads
The Midlands PASS Chapter is pleased to announce our own Paul Shearer and Bill Stevenson as our speakers for our...
2008-02-05
627 reads
I never did complete my MCDBA. As I was preparing to, I transitioned to my systems architect role, meaning I...
2008-02-05
3,208 reads
James Luetkehoelter has announced his book on SQL Server Disaster Recovery is complete. It is published by aPress and due...
2008-02-04
900 reads
This is a small surprise, mainly because it looked like only Visual Studio 2008 was actually going to make the...
2008-02-04
616 reads
In case you haven't seen this elsewhere, if you want Microsoft to release SP3 for SQL Server 2005. It's time...
2008-02-03
944 reads
SQL Server MVP Randy Dyess has a short webcast which provides the highlights of SQL Server 2008 security.He includes some...
2008-02-03
615 reads
SQL Server MVP Andy Leonard is on the latest edition of .NET Rocks! If you're not familiar with .NET Rocks!,...
2008-02-01
750 reads
Yesterday, as I was pulling into my driveway, my front left tire gave. Thankfully, I was going really slow and...
2008-01-31
1,665 reads
I've been dealing with a security product from a security company in recent days that breaks best practices with respect...
2008-01-30
2,304 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