The Human Impact of a Capable AI
Computing systems and algorithms continue to improve, especially in the machine learning and AI spaces. What does that mean for us humans?
2017-05-15
72 reads
Computing systems and algorithms continue to improve, especially in the machine learning and AI spaces. What does that mean for us humans?
2017-05-15
72 reads
It seems that QA is being cut more and more as software development advances. Is that a good thing? Steve Jones has some thoughts.
2017-05-12 (first published: 2013-07-31)
210 reads
When faced with repetitive tasks how do you go about doing them in a focused timely manner?
2017-05-11
151 reads
2017-05-09 (first published: 2013-08-08)
296 reads
2017-05-08
106 reads
Steve Jones is off to Seattle for the rest of the week attending Microsoft Build 2017.
2017-05-08
95 reads
2017-05-05
130 reads
2017-05-03
154 reads
The secret passwords we store in systems might be secure from discovery, but are they secure from use?
2017-05-02
83 reads
2017-05-01
77 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