Articles

SQLServerCentral Article

Understanding SQL Server PARTITION BY with Examples

Introduction When developers first learn SQL aggregation, they usually start with the GROUP BY clause. It works well for summary reports because it combines multiple rows into a single result for each group. For example, you can calculate total sales per region or average salary per department. The limitation of GROUP BY appears when you […]

You rated this post out of 5. Change rating

2026-06-05

44 reads

SQLServerCentral Article

Complex Data Processing with dbt Python Models: The Fabric Modern Data Platform

Data build tool (dbt) is an open-source command line tool that helps engineers transform data using SQL scripts.  However, there are limitations to what can be done with the Structure Query Language (SQL).  That is where dbt Python models can be used to perform complex tasks.  A dbt Python model is a function that reads […]

You rated this post out of 5. Change rating

2026-06-03

1,251 reads

SQLServerCentral Article

Using Containers to Avoid Installing SQL Server

I got a new laptop recently and instead of installing SQL Server, I decided to try and use containers to see how well this works. This article looks at how I got this working relatively quickly. The short list of things I did is: Install Docker Desktop Create a location for data/logs/etc. Create a docker-compose […]

(2)

You rated this post out of 5. Change rating

2026-06-02 (first published: )

6,867 reads

SQLServerCentral Article

Five SQL Server 2022 T-SQL Functions You Should Be Using Right Now

SQL Server 2022 brought powerful new T-SQL functions that eliminate long-standing workarounds. This article walks through five of the most impactful additions — GENERATE_SERIES, GREATEST/LEAST, DATE_BUCKET, the WINDOW clause, and IS NOT DISTINCT FROM — with practical code examples you can use immediately.

(10)

You rated this post out of 5. Change rating

2026-05-29

5,026 reads

SQLServerCentral Article

Unraveling the Mysteries of the Ephemeral Model: The Fabric Modern Data Platform

Data build tool (dbt) is an open-source command line tool that helps analysts and engineers transform data within their warehouses.  It already assumes that data is extracted and loaded into raw tables.  The dbt core framework is written in Python with the translations defined as a combination of SQL scripts, Jinga Template Language, and YAML […]

You rated this post out of 5. Change rating

2026-05-27

995 reads

Blogs

Microsoft Purview data governance best practices

By

Microsoft Purview can be the best data governance tool in the world, but it...

AI Insights for Database Monitoring: A DBA’s Perspective

By

Second in a series on Ai and databases. One Story, three signals – I...

Crash-Consistent MongoDB Snapshot and Restore with Everpure Fusion

By

I’ve been working on a project that combines two things I spend a lot...

Read the latest Blogs

Forums

PolyBase Trace Flags

By Leo.Miller

Are there any good articles on all the trace flags that are enabled on...

The Data Model Matters

By Steve Jones - SSC Editor

Comments posted to this topic are about the item The Data Model Matters

Understanding SQL Server PARTITION BY with Examples

By Imran2629

Comments posted to this topic are about the item Understanding SQL Server PARTITION BY...

Visit the forum

Question of the Day

Running SQLCMD I

I run the SQLCMD utility as follows:

lcmd -S localhost -E
I then type this (the 1> is the prompt):
1> select @@version go
If I hit enter, what happens?

See possible answers