Netbook Experiences
I’ve had an HP Mini netbook for about a month now and have been using it on and off. Actually...
2009-07-29
1,405 reads
I’ve had an HP Mini netbook for about a month now and have been using it on and off. Actually...
2009-07-29
1,405 reads
I have my weekly conference call today, and in trying to get the webcam to work, it appears to be...
2009-07-29
1,413 reads
Thanks to Mike Walsh for really getting this started. Active August is similar to Fit February where folks endeavor to...
2009-07-28
997 reads
ActiveAugust started as a discussion on Twitter and Mike Walsh (@mike_walsh) has set the bar with his blog post about...
2009-07-28
1,199 reads
I wrote an editorial for today on virtualization and some hints about how to plan a project. However I wonder...
2009-07-28
641 reads
I currently write the editorial for the PASS Connector which is published every two weeks as part of my role...
2009-07-28
1,440 reads
I downloaded the Barnes and Noble eReader application the day I heard about it and synced up my iTouch immediately....
2009-07-28
1,014 reads
My daughter has gotten into a few podcasts andhas fun with it. Occassionally she interrupts me, and that happened yesterday....
2009-07-28
1,716 reads
I ran across this a while back and it’s been on my ‘to blog about’ list for too long. Open...
2009-07-28
1,463 reads
Bill Graziano just made the announcement about the changes to the bylaws being published. No sweeping changes, for the most...
2009-07-28
560 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