In a basement, a long, long time ago… #tsql2sday
It’s T-SQL Tuesday time and this is a good one. Read the invitation and proceed.
Who Influenced Me?
I’ve been working SQL...
2017-11-14
493 reads
It’s T-SQL Tuesday time and this is a good one. Read the invitation and proceed.
Who Influenced Me?
I’ve been working SQL...
2017-11-14
493 reads
Ewald Cress (b/t) is our host this month for Adam Machanic’s (b/t) monthly blog party T-SQL Tuesday. Having just gotten...
2017-11-14
335 reads
Come join SIOS and me for an exciting webinar discussing the inherent challenges with infrastructure problems, database performance, and bridging...
2017-11-14
288 reads
Come join SIOS and me for an exciting webinar discussing the inherent challenges with infrastructure problems, database performance, and bridging...
2017-11-14
178 reads
The benefits of running databases in the AWS are compelling but how do you get your data there? In this...
2017-11-14
402 reads
In this module you will learn how to use the Enlighten Stack Shuffle Custom Visual. The Enlighten Stack Shuffle is...
2017-11-14 (first published: 2017-11-01)
1,975 reads
Today I presented one of my favorite sessions - T-SQL's Hidden Support Feature - for the DBA Fundamentals group! They'll put up...
2017-11-14
354 reads
Sometimes the mistakes you make in the coding lead you to a better understanding of a particular concept.
This happened recently...
2017-11-14 (first published: 2017-11-02)
4,801 reads
So this month’s T-SQL Tuesday subject is a shout out and high-five to those people who have inspired or made a...
2017-11-14
313 reads
Today’s blog post is about T-SQL Tuesday. If you haven’t seen T-SQL Tuesday before its a great monthly call for all SQL Server bloggers to write about one topic...
2017-11-14
6 reads
A short blog post about an issue with Fabric Mirroring (with Azure SQL DB...
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...
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