2017-12-28
41 reads
2017-12-28
41 reads
This is usually a slow time for many companies between two holidays, but it doesn't need to be unproductive.
2017-12-27
74 reads
Often we are encouraged to learn the latest things, but sometimes the old stuff is worth knowing too.
2017-12-26
88 reads
2017-12-25
36 reads
Many technical people use Virtual Machines to build their own lab or test environment. Today Steve Jones asks how you've built your setup.
2017-12-22 (first published: 2014-02-14)
246 reads
Does your organization have policies around data security? Perhaps they should, or perhaps you should ask for some to be created and education available for users.
2017-12-21 (first published: 2014-04-07)
157 reads
2017-12-19 (first published: 2014-03-18)
495 reads
2017-12-18
66 reads
Fill out the 2017 salary survey to help us all understand where our compensation might lie relative to others.
2017-12-18
18 reads
2017-12-15
168 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