What is New in SQL Server 2025
Learn about the latest version of SQL Server and get help installing it on your system.
2026-05-04
4,731 reads
Learn about the latest version of SQL Server and get help installing it on your system.
2026-05-04
4,731 reads
A few countries are looking to reduce their reliance on US technology. While they might leave Windows, Steve thinks they will continue to run SQL Server.
2026-04-20
152 reads
This article examines how tempdb is affected by recursive queries, using a few different methods.
2025-05-23
2,163 reads
Steve asks the question about whether you think SQL Server is feature complete today.
2025-04-28
175 reads
2025-02-28
417 reads
2024-10-14
532 reads
One of the most effective ways to fully utilize your data is to create an Azure Hyperscale database. The principles of Azure Hyperscale databases have been discussed in this article, including their cost-effectiveness, worldwide accessibility, automatic scaling, and reliable performance.
2023-12-22
2,228 reads
In this Article , We will delve into the world of Query Store and explore how to use Optimized Plan Forcing to improve performance in SQL Server 2022. We will discuss what it is, how it works, and how it can impact your system's performance.
2023-09-04
5,421 reads
There is more than one way to work with SQL Server stored procedures from within a .NET Application. However, when using parameters, in order to avoid exposing your code to "SQL Injection" vulnerabilities, there is a certain way based on which you should write your code.
2023-08-21
Steve talks about some of the Intelligent Query Processing improvements in SQL Server 2022.
2022-10-03
259 reads
It's time for T-SQL Tuesday #198! This month's topic is change detection. The post T-SQL...
By James Serra
Model Context Protocol, or MCP, is one of those technical ideas that sounds more...
When starting with AWS RDS Aurora for managing relational databases in the cloud, many...
Layanan Bantuan Pelanggan 24 Jam Hubungi WhatsApp CS TRANSNUSA 0821?816?7139 Untuk Bantuan Reschedule Dan...
Komp. Perum Kosambi Baru Jl. Nusa Indah Tengah Blok A, Ext-1 Kav. No. 17...
Call CSO; (+62 821°3111°179 Jl. Danau Sunter Utara No.A2-A3, Sunter Jaya, Kec. Tj. Priok,...
I have this data in a table called dbo.NFLTeams
TeamID TeamName City YearEstablished ------ -------- ---- --------------- 1 Cowboys Dallas 1960 2 Eagles Philadelphia 1933 3 Packers Green Bay 1919 4 Chiefs Kansas City 1960 5 49ers San Francisco 1946 6 Broncos Denver 1960 7 Seahawks Seattle 1976 8 Patriots New England 1960If I run this code, how many rows are returned?
SELECT TOP 2
json_objectagg('Team' : TeamName)
FROM dbo.NFLTeams;
See possible answers