The SQLServerCentral.com 3000
Congratulations to two new members of the SQLServerCentral.com 3000 club: Jeff Moden and Noeld.
2007-07-03
1,441 reads
Congratulations to two new members of the SQLServerCentral.com 3000 club: Jeff Moden and Noeld.
2007-07-03
1,441 reads
It's coming to Denver in September and there's still time to save. And attend the SQLServerCentral.com Reception.
2007-06-20
1,025 reads
2007-05-23
3,525 reads
Longtime author here, Michael Coles, has written a new book on SQL Server 2005 Programming and has sent us a sample chapter on SQLCLR programming. Download the chapter and source code and grab this great book from your favorite bookseller.
2007-05-03
4,286 reads
If you haven't seen it, I highly recommend all SQL Server administrators check out the post from Microsoft detailing the post-SP2 fixes.
2007-04-16
3,956 reads
We're opening the newsletter up to advertising for everyone. Get the news here.
2007-04-11
1,197 reads
SQLMaestro has a new version and is offering a discount to SQLServerCentral.com members.
2007-03-22
2,049 reads
2007-03-21
1,077 reads
We're moving our web server to the UK this weekend, so there will be a bit of downtime Friday night.
2007-03-14
1,753 reads
As we begin a migration to a new hosting facility, we'll keep you informed. The first step is an email migration.
2007-03-07
1,507 reads
If you work with data pipelines, SQL, notebooks, or machine learning models, a Mac...
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...
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