Why Tape is Good
I write an editorial about why I thought tape still had a place in backups. There were some interesting responses...
2009-04-02
797 reads
I write an editorial about why I thought tape still had a place in backups. There were some interesting responses...
2009-04-02
797 reads
Further off topic than usual, but I ran across this as I browsed Springwise after a friend suggested it might...
2009-04-01
592 reads
He was awarded MVP status today, no joke, for his work in the community.
According to his blog, it’s not a...
2009-04-01
940 reads
Announced today on his blog at http://scarydba.wordpress.com/2009/04/01/mvp/. Well earned in my opinion between his participation with PASS, SSC, and his...
2009-04-01
421 reads
Recently I posted LinkedIn (part 1) about my efforts to better understand and use it as a networking platform. It...
2009-04-01
513 reads
It’s time. After years of building this site to work with SQL Server, I sold it to Red Gate Software....
2009-04-01
492 reads
As a production DBA I love to tweak things to optimal perfection. After all, if I paid for the hardware...
2009-04-01
539 reads
There's been a lot of bad press about 'corporate jets' in the news over the past year. Not that planes...
2009-03-31
1,473 reads
I was recently asked by a co-worker on my team at work what he should do to keep up with...
2009-03-31
1,887 reads
One of the guys I met at the Denver User Group pinged me last week for lunch, and I agreed....
2009-03-31
1,815 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