Characters
No, I’m not talking about a Dickens novel. I’m talking about the number of characters in a string. I had...
2009-10-21
1,639 reads
No, I’m not talking about a Dickens novel. I’m talking about the number of characters in a string. I had...
2009-10-21
1,639 reads
Just released on the PASS site is that news that Tom Larock, Jeremiah Peschka, and Brian Moran are the new...
2009-10-21
623 reads
I have a friend, he’s a technology guy and fairly savvy with hardware and software. We were talking recently and...
2009-10-21
850 reads
Quest Connect 2009 is occurring even as I type this. Get on over there if you’re interested in some free...
2009-10-21
502 reads
This isn’t exactly related to SQL Server. I did effect my productivity. I am a monitor junkie. I love multi-monitor...
2009-10-21
870 reads
If you meet me at PASS, you can win prizes!
OK, so maybe there’s a little more to it than that. ...
2009-10-21
714 reads
Hey there folks. I finally was able to get my persona domain name from a squatter who has been holding...
2009-10-21
391 reads
Picking up from yesterday, once we got through the confusion of the room changes everything settled down. I checked the...
2009-10-21
611 reads
I've started using SCOM 2007 R2, which has given me a chance to try out the Operations Manager Shell. The Ops Mgr Shell...
2009-10-21
1,015 reads
Mike Walsh, who is a PASS volunteer, has done a nice job organizing the PASS Summit Birds of a Feather...
2009-10-21
911 reads
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...
By Steve Jones
This month I’m thrilled that Steve Hughes is hosting. I’ve read this Data on...
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