Develop a High Availability/Disaster Recovery Strategy
Develop a High Availability/Disaster Recovery Strategy – Protecting your company’s most valuable asset and keeping that asset available is a very...
2012-11-16
1,081 reads
Develop a High Availability/Disaster Recovery Strategy – Protecting your company’s most valuable asset and keeping that asset available is a very...
2012-11-16
1,081 reads
SQL Server Version Upgrade - You have SQL Server running nicely with no issues or problems. The trouble is its SQL...
2012-11-15
1,179 reads
SQL Server Virtualisation - Lots of companies and organisations are adopting a virtualisation first approach to the installation of new servers...
2012-11-14
775 reads
Configuring Hyper-V on a Windows Server 2012 is really simple and straight forward. Its a very similar process on Windows...
2012-11-13 (first published: 2012-11-09)
2,820 reads
Here at gethynellis.com we offer a range of consulting services to help you manage and maintain your SQL Server environment,...
2012-11-13
585 reads
Here at gethynellis.com we offer a range of consulting services to help you manage and maintain your SQL Server environment,...
2012-11-12
750 reads
Occasionally I come across offers and deals that may be of interest to some of my readers. When I come...
2012-11-11
751 reads
When working with new technology, if you are like me you might like to setup virtual machines to learn the...
2012-11-08
1,361 reads
This post is very much off topic so apologies if you were expecting a technology related post.
Tonight a darts exhibition...
2012-11-08
689 reads
I have been exploring Windows 2012 over the past week or so. Things look a little different to previous versions...
2012-11-07
2,326 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