SQLSaturday #6 in Cleveland - Registration Open
Long time acquaintance Allen White is hosting SQLSaturday #6 in Cleveland on August 9th. Registration and call for speakers is...
2008-06-12
440 reads
Long time acquaintance Allen White is hosting SQLSaturday #6 in Cleveland on August 9th. Registration and call for speakers is...
2008-06-12
440 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
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