Azure SQL Database Active Geo Replication Changes
Six months ago how you would go about setting up Active geo replication for your SQL Databases would be different...
2017-09-25
525 reads
Six months ago how you would go about setting up Active geo replication for your SQL Databases would be different...
2017-09-25
525 reads
More of an FYI, but the EU Cookie Consent law goes into effect on Oct 1. Maybe this matters to...
2017-09-25
671 reads
As the famous Bard once said, “To disable indexes or not to disable indexes, that is the question?”. Well maybe...
2017-09-25
161 reads
In the previous Database Fundamentals, I argued that you should be learning T-SQL, yet the very next post I’m showing...
2017-09-25
484 reads
Last week I had the privilege to host a little contest to give away one free ticket to dataMinds Connect...
2017-09-25
406 reads
Last month I worked on a proof of concept testing Power BI Report Server for self-service BI. The client determined...
2017-09-25 (first published: 2017-09-18)
3,559 reads
Announced today at Microsoft Ignite, the general availability date is Oct 2, for Windows, Linux, and Docker. Time to get...
2017-09-25
494 reads
[read this post on Mr. Fox SQL blog] Recently I had a requirement to combine data that I already had in SQL Server (2016) with JSON document data already stored in...
2017-09-25
30 reads
There are a fair number of options settings. ANSI_NULLS, ARITHABORT, QUOTED_IDENTIFIER, etc. Each session has its own set of configurations....
2017-09-25
478 reads
This year PASS is hosting Game Night as an official event, providing the room and support. Kevin Hill (b | t)...
2017-09-25
406 reads
By Steve Jones
I wrote an article recently on the JSON_OBJECTAGG function, but neglected to include an...
By HeyMo0sh
After working deep in cloud operations, I’ve learned that FinOps isn’t really about dashboards...
By gbargsley
Hello, dear blog reader. Today’s post is coming to you straight from the home...
Comments posted to this topic are about the item Creating a JSON Document I
Comments posted to this topic are about the item Who is Irresponsible?
Comments posted to this topic are about the item Designing Database Changes Before Deployment:...
I want to create a JSON document that contains data from this table:
TeamID TeamName City YearEstablished 1 Cowboys Dallas 1960 2 Eagles Philadelphia 1933If I run this code, what is returned?
SELECT json_objectagg('Team' : TeamName)
FROM dbo.NFLTeams;
See possible answers