Windows Temporary Profile
Amongst IT related problems one that can fill this most ardent optimist with dread is when logging into your pc...
2015-04-28
797 reads
Amongst IT related problems one that can fill this most ardent optimist with dread is when logging into your pc...
2015-04-28
797 reads
By David Postlethwaite
If you are using SQL Server 2012 or 2014 RTM you will find that SSMS offers very limited...
2015-04-21
783 reads
Just a short mid-week update, David Postlethwaite has been selected to speak at SQL Saturday Vienna which is being held...
2015-01-15
597 reads
David Postlethwaite will be speaking at this years SQL Saturday Vienna. The event will be held in Vienna on Saturday...
2015-01-13
498 reads
By David Postlethwaite
I have been chosen to speak at SQL Saturday in Vienna, Austria on 28th February.
The organisers have just...
2015-01-12
475 reads
Over the Christmas holiday period the gethynellis.com website has had a bit of revamp.
In terms of what has changed,...
2015-01-06
407 reads
Learning Tree has recently introduced some new 1 day virtual training events There is range of courses and subjects for...
2015-01-05
885 reads
Back in December just before Christmas I wrote a post about a deal that Packt publishing has on its ebook...
2015-01-02
416 reads
Just short post from me and the pooches to wish you all a very happy new year.
Have a great one!
Geth
2014-12-31
926 reads
Packt Publishing are having a price drop bonanza over the Christmas period. You can get any e-book for just $5...
2014-12-19
479 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