Loud
Working in an office was quite a change for Steve Jones recently. He comments today that it might be something you need to consider when hiring others as well.
2010-06-02
173 reads
Working in an office was quite a change for Steve Jones recently. He comments today that it might be something you need to consider when hiring others as well.
2010-06-02
173 reads
I was never a big fan of temp tables, mostly because there were serious contention issues in SQL Server v6.5....
2010-06-02
1,009 reads
I woke up this morning to find Kathi Kellenberger disagreeing with Andy Leonard’s blog on picking the pre/post conference speakers....
2010-06-01
534 reads
SQL Server has a lower TCA, total cost of administration, than Oracle. Steve Jones comments today on a few of the reasons.
2010-06-01
135 reads
When you create a server audit, one of the things that might surprise you is that the audit doesn’t record...
2010-06-01
323 reads
A holiday in the US, commemorating the men and women who have died in the service of our country.
Most...
2010-05-31
1,522 reads
2010-05-31
60 reads
I wrote about setting up a basic server audit recently. That showed about how a server level audit is set...
2010-05-28
3,555 reads
I got new drives for my Windows Home Server the other day and decided to add some space to the...
2010-05-27
1,042 reads
A new technique to help anonymize medical research data has been developed, and could help with other types of data, but there is an issue.
2010-05-27
93 reads
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...
By gbargsley
Hello, dear blog reader. Today’s post is coming to you straight from the home...
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