Check Out the Free Performance Analysis of Logs (PAL) Tool
Traditionally, analyzing Performance Monitor data has not been an easy task. It often involved viewing Performance Monitor logs in graph...
2008-12-23
3,780 reads
Traditionally, analyzing Performance Monitor data has not been an easy task. It often involved viewing Performance Monitor logs in graph...
2008-12-23
3,780 reads
One of Google's tenets is to "do no evil" as they run their corporation. This article questions their motives as...
2008-12-23
821 reads
If you haven't done so, check out this Simple-Talk Editorial by Tony Davis, in addition to all the comments the...
2008-12-23
706 reads
Visit Business of Software
It’s my boss, or rather the owner of the company I work for (yes I work for...
2008-12-22
667 reads
I guess I'm stuck in the past, but the Office Ribbon still hasn't grown on me. I think it makes...
2008-12-22
741 reads
There's one report that I look at every day to assess how things are going on a project we launched...
2008-12-21
603 reads
I was reading through the SQL Server 2005 SP3 release notes yesterday (sadly, it was enjoyable) and clicked through to...
2008-12-19
799 reads
I saw a question today on restoring a SQL Server 7 backup to SQL Server 2005, and I wasn't sure...
2008-12-19
665 reads
Last and not least this week, The Snowball: Warren Buffett and the Business of Life. This is an authorized biography...
2008-12-18
708 reads
My friend Jack has been blogging for almost a year now and is looking for feedback. If you're a blogger...
2008-12-18
596 reads
By Arun Sirpal
After a year away getting to grips with AI and its application across the...
By SQLPals
Beware of Generic SQL Server License Keys (What to Use Instead) ...
By Brian Kelley
Professor Patrick Winston of MIT used to give a one-hour talk about how to...
Comments posted to this topic are about the item Creating a JSON Document II
By VishnuGupthanSQLPowershellDBA
Comments posted to this topic are about the item Backing Up Azure Key Vault...
Comments posted to this topic are about the item Every Database Has Problems
I want to create a JSON document that contains data from this table:
TeamID TeamNameCity YearEstablished 1 Cowboys Dallas 1960 2 Eagles Philadelphia 1933 3 Packers Green Bay 1919 4 Chiefs Kansas City 1960If I run this code, what document(s) is/are returned?
SELECT json_objectagg( n.city : n.TeamName) FROM dbo.NFLTeams;See possible answers