Coding With Music
Today Steve Jones has a poll that asks about your work environment, and specifically what type of noise works best for you.
2010-12-03
197 reads
Today Steve Jones has a poll that asks about your work environment, and specifically what type of noise works best for you.
2010-12-03
197 reads
I saw this on Facebook, and while I’m not sure of the list, I reproduced it here. I think that...
2010-12-03
538 reads
I saw a very interesting blog at 37 Signals on the quote “the things you do more often are the...
2010-12-03
545 reads
I saw this posted on Twitter, yet another reason to have a variety of people you follow. Some very interesting...
2010-12-02
559 reads
Do we need new technologies to handle the large scales of complex data analysis? Steve Jones thinks SQL Server can handle the load.
2010-12-02
112 reads
Today Steve Jones talks about the reasons why you might change jobs, and the fact that you aren't alone. However be careful about changing jobs, and make an attempt to stay if you can.
2010-12-01
278 reads
I updated the iPad tonight to iOS 4.2. I had no particular reason to upgrade, but I saw a few...
2010-12-01
534 reads
I guess I might need to go back to RAID. From the Windows Team Blog, there is a decision to...
2010-12-01
440 reads
Worthy of an editorial, but this is a pretty good use-case for why SQL Azure might make sense. This is...
2010-12-01
400 reads
When it rains it pours.
Last week my Nano died. It won’t hold a charge, or at least it won’t...
2010-12-01
445 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