Why We Like SQLServerCentral
We reached the half million member milestone last week and had a contest. Read on to see the winners.
2007-10-08
556 reads
We reached the half million member milestone last week and had a contest. Read on to see the winners.
2007-10-08
556 reads
I hate contests. I mean it's nice to get people involved and I start out with the best of intentions...
2007-10-07
730 reads
2007-10-05
2,238 reads
One of the people responsible for Books Online in SQL Server 2005 takes a few minutes to share some thoughts with SQLServerCentral.com
2007-10-04
1,617 reads
Well, lots of mistakes. Here's a good example of one: Friday Oct 5 mistake.
I decided to go the budget route...
2007-10-04
980 reads
2007-10-04
2,583 reads
2007-10-03
2,105 reads
A list of articles and comments, including some pictures, from the 2007 PASS Summit in Denver.
2007-10-03
1,193 reads
If I have accomplished anything, it is because I have stood on the shoulders of giants.
2007-10-03
178 reads
This article expands Steve Jones' look at ways to audit changes to your data by building mirror tables.
2007-10-02 (first published: 2003-03-17)
22,361 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...
Hi to all We have situation at a client where someone is illegally changing...
Hi to all We have situation at a client where someone is illegally changing...
This week my BI Developer colleague proudly showed me a new Power BI report...
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