Backup Preparations
This week Steve asks you to make sure you practice your restore skills periodically.
2017-07-03
48 reads
This week Steve asks you to make sure you practice your restore skills periodically.
2017-07-03
48 reads
2017-07-03
100 reads
Steve Jones saw a database design test for developers, but he's never been given one.
2017-06-30
261 reads
This week Steve Jones wonders what you might do if you discovered data corruption.
2017-06-29
66 reads
2017-06-28
109 reads
The ability to protect, and perhaps handle, sensitive data separately from other data is becoming more important. Steve Jones discusses the process and asks if it's something you perform on a regular basis.
2017-06-27
68 reads
If you have ideas for how to improve replication, Steve Jones is asking for them.
2017-06-26
143 reads
Phil Factor reflects on the occasional benefits of document loss, whether accidental or less so.
2017-06-26
70 reads
This week Steve Jones talks about the need to get away and asks if you have plans.
2017-06-23
79 reads
Today Steve Jones discusses data loss, always a scary topic for the data professional.
2017-06-22
97 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