TechEd 2010 - A Half a Conference Recap
I left TechEd this morning, actually too early, catching a 7:12am flight from New Orleans to Denver. Which meant a...
2010-06-09
363 reads
I left TechEd this morning, actually too early, catching a 7:12am flight from New Orleans to Denver. Which meant a...
2010-06-09
363 reads
The Royal Canadian Mint, in Ottawa, is located at a large castle. How cool is that? Would you want to...
2010-06-08
496 reads
2010-06-08
90 reads
The second day’s keynote is by Ted Kummert and focuses on BI.
This keynote is in one of the smaller...
2010-06-08
562 reads
In the customer demo, a few reports that were built with PowerPivot and Report Builder 3.0, which are helpful to...
2010-06-08
565 reads
It’s a bad idea. Co-locating the BI conference at TechEd has created a lot of confusion and annoyance. If people...
2010-06-08
538 reads
It’s the million dollar question. Literally.
I stopped by the SQL Server area at TechEd in the expo to talk to...
2010-06-08
1,184 reads
The 7th T-SQL Tuesday is upon us and you can read about it on SQL Chicken’s blog. He’s hosting this...
2010-06-08
1,978 reads
I’ll be at TechEd on Monday/Tuesday. Not going to sessions as I don’t have the time to stay there all...
2010-06-07
358 reads
This week Database Weekly has a lot of performance related posts and Steve Jones notes that those are not of much use unless you know you really do have a performance problem.
2010-06-07
158 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