HP Mini Netbook - An External Monitor
When I bought the HP Mini 1030R netbook, I had every intention of using it for presentations, taking it on...
2009-07-09
988 reads
When I bought the HP Mini 1030R netbook, I had every intention of using it for presentations, taking it on...
2009-07-09
988 reads
Richard MacDonald's demonstrates using Microsoft Chart Controls with Powershell in his post, Charting with Powershell. The chart controls are free and work with...
2009-07-09
3,473 reads
I was having a discussion with Brian Knight yesterday about whitepapers and thought I’d share some of it – from my...
2009-07-09
436 reads
It's almost 9, I've been working for over an hour, and only one foot has left the bed. It touched...
2009-07-08
454 reads
I've been doing the Voice of the DBA podcasts for over a year now, and I really enjoy them. I've...
2009-07-08
895 reads
If you haven’t seen the news yet we’ve got something new on the schedule this year – a 2 hour seminar...
2009-07-08
563 reads
It was kind of amazing to see SQLServerCentral have issues over the last few days. We’re still not sure what...
2009-07-08
476 reads
A new scheme to get ATM PIN numbers using automated systems and VOIP is in play. It's described here and...
2009-07-08
287 reads
I finally made the call today to reserve my room in Baton Rouge for SQLSaturday #17 in Baton Rouge, LA....
2009-07-07
568 reads
I recently saw that Steve Jones had posted an update on his 2009 goals and realized that is was about...
2009-07-07
368 reads
By Steve Jones
I discovered a procedure recently that I wasn’t aware of: sp_sequence_get_range. This post looks...
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) ...
i have huge table with lot of data and is also wide. i took...
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...
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