Trello – Integrations
In December I wrote about working from home in which I talked about Trello. Trello is a virtual kanban board...
2018-02-02
100 reads
In December I wrote about working from home in which I talked about Trello. Trello is a virtual kanban board...
2018-02-02
100 reads
Recently, one of my clients had a need to automatically download a file from a public facing state government website. ...
2018-01-26
1,130 reads
Recently, one of my clients had a need to automatically download a file from a public facing state government website. ...
2018-01-26
126 reads
With the announcement of the recent security issues, namely Meltdown and Spectre, we at Denny Cherry & Associates Consulting have been...
2018-01-19
514 reads
Recently, I got to work with a client on something interesting. We implemented transactional replication to send data to an...
2018-01-22 (first published: 2018-01-12)
1,327 reads
Last month in December, I posted an article about working from home. In it I mentioned a couple of tools...
2018-01-05
421 reads
Last month in December, I posted an article about working from home. In it I mentioned a couple of tools...
2018-01-05
576 reads
In a few days the year 2017 will come to a close. The brand new year 2018 is on deck...
2017-12-29
485 reads
In a few days the year 2017 will come to a close. The brand new year 2018 is on deck...
2017-12-29
325 reads
It’s now been one month since I’ve started to work for Denny Cherry & Associates Consulting. Working for DCAC now enables...
2017-12-01
469 reads
By Brian Kelley
Professor Patrick Winston of MIT used to give a one-hour talk about how to...
By Steve Jones
One of the popular features of Redgate Monitor has been the ability to add...
When building the sql-on-k8s-operator, I wanted to make sure it could handle both planned...
Comments posted to this topic are about the item Creating a JSON Document II
By VishnuGupthanSQLPowershellDBA
Comments posted to this topic are about the item Backing Up Azure Key Vault...
Comments posted to this topic are about the item Every Database Has Problems
I want to create a JSON document that contains data from this table:
TeamID TeamNameCity YearEstablished 1 Cowboys Dallas 1960 2 Eagles Philadelphia 1933 3 Packers Green Bay 1919 4 Chiefs Kansas City 1960If I run this code, what document(s) is/are returned?
SELECT json_objectagg( n.city : n.TeamName) FROM dbo.NFLTeams;See possible answers