New Tool: ApexSQL Audit Viewer
ApexSQL has announced a new viewer tool for ApexSQL Audit. ApexSQL Audit does a lot of the dirty work of...
2007-04-11
1,729 reads
ApexSQL has announced a new viewer tool for ApexSQL Audit. ApexSQL Audit does a lot of the dirty work of...
2007-04-11
1,729 reads
Bob Ward posted on the PSS SQL Server Engineers blog a fairly long post on SP2 and the hotfixes thereafter:...
2007-04-11
1,435 reads
Watching a Chefograpy on Giada De Laurentiis, I learned that she was considered very much an introvert and had a...
2007-04-10
1,447 reads
I had heard of Johnny Long before I attended his briefing at Black Hat 2004. Well known for his research...
2007-04-09
1,512 reads
On the Microsoft Dynamics CRM Team Blog, Jay Grewal has posted information about the CRM Security Model Internals.
CRM is...
2007-04-09
1,639 reads
SQL Server MVP Aaron Bertrand has posted an update (April 6, 2007) on the version numbers of post SP2 hotfixes....
2007-04-09
1,374 reads
This is just frightening. A piece of a beer can, a pair of pliers, and the combo lock pops open.
...
2007-04-07
1,501 reads
I wrote a small commentary on quality control today and I'm surprised it didn't get more reaction.
I'm not a great...
2007-04-06
1,467 reads
Like many other SQL Server focus area, SQL Server Samples has its own blog. A recent post there indicates that...
2007-04-06
1,417 reads
On a recommendation, I picked up this book by Ralph Kimball. I remember it coming out years ago and I...
2007-04-06
1,418 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