2011-01-07
2,696 reads
2011-01-07
2,696 reads
I backed up my machine, copied a bunch of data to both a thumb drive as well as the second...
2011-01-06
753 reads
Do you know what to do in case of a data breach? Steve Jones talks about the importance of having a "runbook" for security that covers the same types of things you might need to know for disaster recovery.
2011-01-05
151 reads
I backed up my machine, copied a bunch of data to both a thumb drive as well as the second...
2011-01-05
899 reads
Unlike for data files, SQL Server does not use multiple files for the transaction log in any way that improves...
2011-01-04
777 reads
Unlike for data files, SQL Server does not use multiple files for the transaction log in any way that improves...
2011-01-04
787 reads
If you can’t cram enough for the test, what’s the thing to do? Slide the test. I realized last night...
2011-01-04
767 reads
If you can’t cram enough for the test, what’s the thing to do? Slide the test. I realized last night...
2011-01-04
647 reads
After the holidays, Steve Jones welcomes everyone in the SQLServerCentral community to the new year and talks about goals and your career.
2011-01-04
176 reads
It's actually nice to be back to work. It's been a great holiday season for me, lots of family time...
2011-01-03
780 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...
Hey all. I understand if this gets taken down due to the subject matter...
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?
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