SQLServerCentral Editorial

Why Tech Events Matter for Data Pros (and why I’m grateful)

I just got back from the Redgate Summit events in New York City, where I had the chance to present, swap stories, and nerd out with a lot of brilliant data folks. I came home energized… and then promptly slept for 14 hours on Thursday. That’s the best kind of exhaustion in my book.  The […]

5 (1)

You rated this post out of 5. Change rating

2025-08-23

39 reads

SQLServerCentral Editorial

Using Ollama on Windows 11 as an Alternative to Public LLMs

In my ongoing war against shadow AI, I’ve been testing out alternatives that most everyone can use, no matter what your technical expertise.  Although somewhat limited depending on your resources available, (laptop CPU/GPU, memory, etc.) If you want to try the newest open models without sending your prompts to the cloud, or you just want […]

You rated this post out of 5. Change rating

2025-08-16

108 reads

SQLServerCentral Editorial

Everyone Wants a Piece of the AI Pie

Swiping through LinkedIn feels like watching a campsite suddenly flooded with s’mores. Every other ad, i.e. post, promises the next miracle AI service, platform, or “AI-powered” widget. It’s a frenzy that says: “If buzzwords paid the bills, we’d all be billionaires already.”  I can’t fault the reasoning, there’s a lot of buzz out there telling […]

5 (1)

You rated this post out of 5. Change rating

2025-08-09

88 reads

SQLServerCentral Editorial

Critical Data and Insomnia

Most evenings I spend some time soaking in the tub and reading articles/watching videos on InfoSec, Data Protection and AI.  It may sound like a terrible way to spend some time, but I always find it educational and I’m in shock by the lack of concern around data security, and yet….I’m not.  For decades, the […]

5 (2)

You rated this post out of 5. Change rating

2025-08-07

118 reads

SQLServerCentral Editorial

The Double-Edged Sword of AI and Data Democratization

Agentic AI is often hailed as a game-changer by organizations, bringing autonomous decision-making, intelligent automation, and powerful predictive capabilities. However, as organizations rush to leverage these technologies, those dealing with critical data in relational databases, documents and datasets, especially personally identifiable information (PII) face a harsh reality: moving AI projects from proof-of-concept to production is […]

You rated this post out of 5. Change rating

2025-08-06

140 reads

SQLServerCentral Editorial

When DBAs Should Consider Using SQL Server to Store Vector Data and If It Makes Sense

As we continue to build more applications using AI embedded solutions, database professionals are increasingly being asked to support workloads that would have seemed outside their charter just a few years ago. One of the most significant shifts has been the rise of vector data (i.e. high-dimensional numerical representations of content like text, images, and […]

5 (2)

You rated this post out of 5. Change rating

2025-07-26

159 reads

Blogs

New article: Automating SQL Server Builds

By

I refresh my test SQL Servers at least monthly with a fresh VM. Setting...

Leading with Accountability: How Extreme Ownership Transforms Leadership

By

Embracing Total Responsibility In every organization there comes a moment when teams must choose...

Unlock Your Notion Data with SQL

By

If your Notion workspace feels more like a data graveyard than a command center,...

Read the latest Blogs

Forums

What is Delayed Durability in SQL Server — And Should You Turn It On?

By Chandan Shukla

Comments posted to this topic are about the item What is Delayed Durability in...

Which MAXDOP?

By Steve Jones - SSC Editor

Comments posted to this topic are about the item Which MAXDOP?

Data Sovereignty in the Cloud

By Steve Jones - SSC Editor

Comments posted to this topic are about the item Data Sovereignty in the Cloud

Visit the forum

Question of the Day

Which MAXDOP?

I have a SQL Server 2022 instance with this setting:

EXECUTE sp_configure 'max degree of parallelism', 4;
GO
I then run this:
SELECT ProductID, OrderQty, SUM(LineTotal) AS Total
FROM Sales.SalesOrderDetail
WHERE UnitPrice < $5.00
GROUP BY ProductID, OrderQty
ORDER BY ProductID, OrderQty
OPTION (MAXDOP 2);
GO
What is the maxdop for my query?

See possible answers