TechEd - Designing a Global Database
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
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
Shawn Weisfeld has been the President of ONETUG (Orlando .Net Users Group) for the past three years and has just...
2008-06-08
478 reads
Attendance on Saturday about 450 across the communities (SQL, .Net, DNN, etc). Not as big as we'd hoped, but still...
2008-06-08
433 reads
I still remember hearing an executive in IT at Virginia Power start a sentence like this, and he went on...
2008-06-06
700 reads
One of the big themes this year for Microsoft (and I just saw it on the PASS Summit site) is...
2008-06-05
705 reads
Today I ran to the co-location facility for FourDeuce and End to End Training, to upgrade our database server to...
2008-06-05
675 reads
For SQL Server, it's coming soon. Surprisingly, when I was up in Redmond, quite a few people were asking about...
2008-06-04
707 reads
The folks at attrition.org have been stalwarts in providing information to the security community for ages, it seems. I first...
2008-06-04
676 reads
Our main presentation was on 'Unlocking the Power of SQL Compact' by Steve Lasker & Ginny Caughey. Went better than I expected...
2008-06-04
421 reads
By gbargsley
It's 2 AM. Your phone is going off. Users can't connect to the application,...
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...
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