Building With Iron Pipe
For a while I’ve been wanting to do a project that used black iron pipe for the main structure. Kind...
2016-02-16
716 reads
For a while I’ve been wanting to do a project that used black iron pipe for the main structure. Kind...
2016-02-16
716 reads
Something I always stress to people when I write and present is the importance of tracking data *before* you need...
2016-02-16
1,855 reads
Update: For the KPI version of this report, please check Power BI KPI Report: Hospital Charge Data
How much hospitals charge...
2016-02-16 (first published: 2016-02-09)
2,211 reads
I cannot believe that I have not posted any blog since May 2015! It’s been a busy few months for...
2016-02-16
1,068 reads
Update: Just getting started with Power BI? You can download the Power BI Report File for this KPI Report. Please...
2016-02-16
2,171 reads
A couple weeks ago I presented to the DBA Fundamentals virtual chapter. The presentation was recorded and is available from...
2016-02-16
471 reads
A couple weeks ago I presented to the DBA Fundamentals virtual chapter. The presentation was recorded and is available from...
2016-02-16
104 reads
A few weeks ago a number of us embarked on this year’s SQL Cruise, this time to the Caribbean. It was...
2016-02-16
622 reads
This month the talented Jorge Segarra (B|T) hosts the T-SQL Tuesday block party, and he has chosen the topic of...
2016-02-16
488 reads
This month’s host is Jorge Seggara, the @sqlchicken, who works for Microsoft. A busy schedule caused a slight delay, so...
2016-02-16
911 reads
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...
By Steve Jones
This month I’m thrilled that Steve Hughes is hosting. I’ve read this Data on...
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