Database Taming
Sometimes a database can seem to be as willful as a colt. Taming it requires an iron nerve, and unflinching eye contact. Occasionally though, you need to know when to jump the fence and regroup.
2018-02-12
75 reads
Sometimes a database can seem to be as willful as a colt. Taming it requires an iron nerve, and unflinching eye contact. Occasionally though, you need to know when to jump the fence and regroup.
2018-02-12
75 reads
Many of us have scripts that we run in SQL Agent jobs, but Steve wonders if we really treat them like production code.
2018-02-12
100 reads
Steve loves to read all sorts of books and is asking what books you'd read professionally or for fun in 2018.
2018-02-09
84 reads
2018-02-07
288 reads
You have the opportunity to influence the makeup of the conference agenda for the PASS Summit
2018-02-06
41 reads
Big Data hasn't been in the news, perhaps because more organizations are realizing they need the right data.
2018-02-05
67 reads
2018-02-05
51 reads
This Friday Steve Jones wants you to look back and cringe a bit. Share with the rest of the community what a bad day was for you and see if it was really as bad as you think.
2018-02-02 (first published: 2014-03-21)
250 reads
2018-02-01
84 reads
2018-01-31
323 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