Close Encounters of the CEIP Kind
Microsoft's Customer Experience Improvement Program for SQL Server: once easy to avoid, now hard to ignore, but Rodney Landrum sees an upside.
2017-02-06
1,542 reads
Microsoft's Customer Experience Improvement Program for SQL Server: once easy to avoid, now hard to ignore, but Rodney Landrum sees an upside.
2017-02-06
1,542 reads
This week Steve Jones asks what parts of SQL Server would you improve and why.
2017-02-03
78 reads
A look at the good, and bad, of the IoT world along with the potential future.
2017-02-02
101 reads
We all have different levels of skills, and it's not always because we don't try. Sometimes it's a question of timing.
2017-01-31
131 reads
2017-01-30
74 reads
There are some changes to memory limits in SQL Server 2016 SP1 Standard Edition.
2017-01-26
1,651 reads
When things go wrong, how do you handle them? Steve Jones comments on crisis management using a great example from Amazon.
2017-01-25
211 reads
Being unemployed is difficult. Here's something I learned to help me through it.
2017-01-24
288 reads
2017-01-23
120 reads
2017-01-23
101 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...
Hey all. I understand if this gets taken down due to the subject matter...
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?
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