Liable for Data Loss
Today Steve Jones looks at some data loss lawsuits against Microsoft, but asks the general question of whether software vendors need to be more liable (and careful).
2017-04-17
72 reads
Today Steve Jones looks at some data loss lawsuits against Microsoft, but asks the general question of whether software vendors need to be more liable (and careful).
2017-04-17
72 reads
This week Steve looks at all the information and learning available for Power BI.
2017-04-17
125 reads
Do you know what the cost is for your database going down? Maybe more interesting, is do you want to know?
2017-04-14
148 reads
The future will see more of our data used in machine learning and other AI-like systems. Is that something we want?
2017-04-13
53 reads
Today Steve Jones discusses the idea of data value, and what it might mean to you, personally.
2017-04-12
55 reads
Just because something works, is it prudent to implement a solution knowing there is a chance this design flaw will be stricken from future revs of SQL Server? It depends.
2017-04-10
77 reads
This article explores aspects of a job that help one feel satisfied at work.
2017-04-10
98 reads
This week Steve Jones is asking if you stage your database changes ahead of application changes.
2017-04-07 (first published: 2012-11-30)
224 reads
Working with someone that micro-managers you or watches your every action can be hard. Steve Jones has a few thoughts.
2017-04-06 (first published: 2013-02-04)
260 reads
This article explores the author's way of making big decisions.
2017-04-04
72 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