Cursors and high gas prices
Using cursors is a controversal topic. As a former developer, that is the way I thought about processing data at one...
2008-04-25
1,393 reads
Using cursors is a controversal topic. As a former developer, that is the way I thought about processing data at one...
2008-04-25
1,393 reads
Error Logs Part II -- Enumerating the error logs
In my first post on SQL Server Error Logs, I briefly mentioned using...
2008-04-25
1,749 reads
Steve Jones recently posted an editorial about LINQ and the resulting discussion encapsulates most of the points of view on...
2008-04-24
1,771 reads
Ran across this in the Mar/Apr ACM Queue, http://www.eecs.berkeley.edu/IPRO/JimGrayTribute/ will be held at UC Berkeley on May 31st, 2008. Jim Gray...
2008-04-24
1,358 reads
Most of that do any time of training or consulting typically use laptops, and they are even reasonably common in...
2008-04-23
1,615 reads
This is an old topic and well documented, just google it and I believe you will get a lot,
However,...
2008-04-22
2,223 reads
Ran across this from Mosso, a spin off from Rackspace. Pricing looks very attractive, and there are some interesting twists....
2008-04-22
1,709 reads
I am fairly new to the IT profession, so I think my blog will be great for others trying to...
2008-04-22
1,557 reads
As you may know MS Teched is two weeks this year and is being held in Orlando. Turns out that...
2008-04-22
1,328 reads
Our Dell rep sent over this link about Equilogic ISCSI SAN's, pricing is not yet posted but according to him,...
2008-04-21
866 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