Prepping for SQL Connections in Las Vegas
I started watching Leverage this season, after it was recommended by Wil Wheaton (blog/twitter). For those of you that don't...
2009-09-18
943 reads
I started watching Leverage this season, after it was recommended by Wil Wheaton (blog/twitter). For those of you that don't...
2009-09-18
943 reads
I finally carved out some time in my day to try and get the August CTP of SQL Server 2008...
2009-09-18
1,360 reads
Always On: SQL Server High Availabilty
Just wanted to tell you all about a fantastic Webinar on SQL Server High Availability,...
2009-09-18
941 reads
In the next few months, I’ll be giving a couple of talks on SQL Server business intelligence. For October, I...
2009-09-18
827 reads
Last week I posted Part 1 and Steve Jones gave some grief about not posting some pictures (rightfully so) of...
2009-09-17
835 reads
I noticed that the keys on my laptop were pretty dirty the other day. The heavily used ones have a...
2009-09-17
800 reads
Your servers are only as fast as the slowest part, hard drives.To feed other parts of the system we have...
2009-09-17
3,332 reads
Business Intelligence Developers Studio (aka BIDS) for Microsoft SQL Server 2005 Reporting Services makes creating engaging and dynamic reports nearly...
2009-09-17
1,224 reads
A colleague pointed out a site that collects a lot of job posting data and exposes graphs - so I've taken...
2009-09-17
4,229 reads
A minor annoyance of mine for a long time has been how SSMS will sometimes prompt you to connect to...
2009-09-17
380 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