TechEd - Day 3
I left my laptop at the Red Gate booth, and then managed to wander up to a Data Compression talk...
2008-06-12
738 reads
I left my laptop at the Red Gate booth, and then managed to wander up to a Data Compression talk...
2008-06-12
738 reads
A program manager asked the question at the start: Who's had a query performance issue where a query "went bad"...
2008-06-12
1,058 reads
At the recent SQLSaturday #4 we had a session end up finishing much earlier than expected, so we gave the...
2008-06-11
703 reads
I went to this one, mostly because I don't understand coruption that well and Paul Randal is a great speaker....
2008-06-11
1,360 reads
Andrew Kelley, SQL Server MVP, is a good speaker, so I'd recommend his sessions if you want good technical information.
IO...
2008-06-11
2,589 reads
I recently purchased a Dell XPS M1530 laptop for use both for professional work (consulting & presentations) and ministry (mostly presentations)....
2008-06-10
786 reads
Just received this from my friend John Magnabosco about the SQL portion of the event:
Business Intelligence Track - TBD (Arie Jones,...
2008-06-10
492 reads
Talking about heterogenous systems, usually legacy systems. How do you move to a new architecture?
You must start with the old...
2008-06-10
767 reads
I was going to hit a Powershell lab because the Scripting Guys at TechNet write great columns, but it filled...
2008-06-10
1,301 reads
It's a rite of passage in our business that we have to learn the RAID levels, and I still enjoy...
2008-06-09
506 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