Hi SQL World
Hi - SQL World!
Here in my blog I will post everything about SQL Server 2000/2005/2008!
Hope that I will help my IT...
2008-07-08
642 reads
Hi - SQL World!
Here in my blog I will post everything about SQL Server 2000/2005/2008!
Hope that I will help my IT...
2008-07-08
642 reads
Ran across IronKey Personal in PC Magazine and thought some of you might be interested. It has built in encryption,...
2008-07-08
281 reads
It's been a long time since I saw a vulnerability in SQL Server released. And to date, there haven't been...
2008-07-08
801 reads
I went away in the mountains for July 4th to a camping facility with the family. I was an unwired...
2008-07-07
891 reads
I had a note to myself to write up some notes about listening on a non standard port, but it...
2008-07-07
398 reads
I will be speaking at an upcoming JSSUG (Jacksonville SQL Server User Group) meeting Wednesday July 16th. This event will...
2008-07-07
515 reads
Just over a year ago I decided to start a blog and I put an item on my calendar to...
2008-07-06
356 reads
I try to limit the number of truly off topic posts I do, but today is a special day in...
2008-07-03
239 reads
The Midlands PASS Chapter hosts:
SQL Server MVP John Welch
July 17, 2008 at Training Concepts
The Midlands PASS chapter will hold a...
2008-07-03
717 reads
My friend Shawn Weiseld posted a note about the new INETA Champs Program. Looks interesting and is a nice step...
2008-07-02
349 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