Monitoring and Alerts with Azure SQl Database
Continuing with the Azure SQL Database theme, in this short video David demonstrates how to setup alerts for an Azure SQL...
2017-12-04 (first published: 2017-11-22)
1,173 reads
Continuing with the Azure SQL Database theme, in this short video David demonstrates how to setup alerts for an Azure SQL...
2017-12-04 (first published: 2017-11-22)
1,173 reads
Join me for a session on Linux administration for the SQL Server DBA as part of the PASS SQL Server...
2017-12-04 (first published: 2017-11-26)
1,125 reads
Last homework of the year. Last month was to create a view. This month it’s time to take a look...
2017-12-04
316 reads
Issue: While running powershell in SQL agent job step, I am getting below error: –
A job step received an error...
2017-12-04
992 reads
“We’ll fix it in the mix.”
“It’s good enough for right now.”
“We’ll worry about that later.”
“Your check is in the mail.”
Of...
2017-12-04
732 reads
This is my first opportunity hosting a T-SQL Tuesday and am super excited!!T-SQL Tuesday is the brainchild of well respected SQL Guru...
2017-12-04
950 reads
I know that when some people see AdventureWorks, their vision turns all red around the edges, their blood pressure spikes...
2017-12-04
366 reads
Between sessions at the PASS Summit, I had the privilege of interviewing Alberto Ferrari and Marco Russo; SSAS Maestros and...
2017-12-03
424 reads
Over the past year we’ve learned about how SQL Server on Linux is implemented, leveraging SQLPAL and the team is pretty confident in their architectural decisions as indicated in this...
2017-12-02
4 reads
Over the past year we’ve learned about how SQL Server on Linux is implemented, leveraging SQLPAL and the team is pretty...
2017-12-02
453 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