Building a container running SQL Server 2014 SP2 Developer
One of the things about working with SQL in Docker is that you kinda have to use the images that...
2017-05-15 (first published: 2017-05-02)
2,413 reads
One of the things about working with SQL in Docker is that you kinda have to use the images that...
2017-05-15 (first published: 2017-05-02)
2,413 reads
Morning all, I know it’s a bank holiday in the UK & Ireland today but some of us still have to...
2017-05-01
273 reads
Nearly May! Although it’s been snowing this week in Dublin so summer still appears to be a while off…
Community driven...
2017-04-28
587 reads
Nearly May! Although it’s been snowing this week in Dublin so summer still appears to be a while off…
Community driven...
2017-04-28
518 reads
Last week Microsoft confirmed that the name of SQL vNext will indeed be SQL Server 2017. I was looking through...
2017-05-04 (first published: 2017-04-26)
2,575 reads
Last week Microsoft confirmed that the name of SQL vNext will indeed be SQL Server 2017. I was looking through...
2017-04-26
185 reads
Back after a couple of busy weeks, kinda looking forward to getting back into the old work routine (ah, well...
2017-04-24
316 reads
Back after a couple of busy weeks, kinda looking forward to getting back into the old work routine (ah, well...
2017-04-24
174 reads
Morning all, it’s been a busy week so I haven’t had a chance to write a post. Instead I’ve seen...
2017-04-13
299 reads
Morning all, it’s been a busy week so I haven’t had a chance to write a post. Instead I’ve seen...
2017-04-13
153 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