Your Friend the Computer
You know it is time to reassess your relationship with
your computer when....
2001-05-28
1,609 reads
You know it is time to reassess your relationship with
your computer when....
2001-05-28
1,609 reads
2001-05-25
4,003 reads
2001-05-23
2,182 reads
VMWare is a software product that is great for testing new ideas without having to purchase and install a separate machine.
2001-05-21
4,345 reads
A review of the SQL Server 2000 Black Book from the Coriolis Black Book series.
2001-05-18
4,615 reads
These are some stories that show the downside of everyone having cell phones.
2001-05-16
1,817 reads
There is a web site devoted to humorous tales from the tech
support field. Check out these samples and submit your own.
2001-05-15
1,234 reads
2001-05-15
1,921 reads
2001-05-14
1,466 reads
2001-05-13
2,569 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