PASS Summit 2009 - Opening Remarks
Opening remarks on day 2 of the Summit come from Rushabh Mehta, vice president of finance. Rushabh is giving us...
2009-11-04
948 reads
Opening remarks on day 2 of the Summit come from Rushabh Mehta, vice president of finance. Rushabh is giving us...
2009-11-04
948 reads
10:08 AM – And that's a wrap! See you tomorrow for day 3's keynote.
10:07 AM – Tom talking up the product roadmap.This...
2009-11-04
805 reads
Nice phot montage, included so many friends. I love PASS.
Rushab Mehta launching the Wednesday key note. Unfortunately, this is the...
2009-11-04
507 reads
Tom Casey of Microsoft on BI.
20% of people that are decision makers within organizations have the tools and information they...
2009-11-04
587 reads
More demos using Analysis Services from R2. They’re showing how you can refresh data & reports without having to write a...
2009-11-04
552 reads
The day started off with the Quest Software breakfast presentation, to which I arrived late to find a standing-room-only crowd. ...
2009-11-04
621 reads
Here is the script that I used in my Dr. DMV presentation this afternoon at PASS. It is a set...
2009-11-04
1,642 reads
Today was the first official day of the full (3-day) conference, with about 2,200 full conference attendees. Officially, PASS claims...
2009-11-04
417 reads
At the 2009 PASS Community Summit, I have gotten the opportunity to talk to many DBAs, and to find out...
2009-11-04
590 reads
I've never attended this in the past, but I've wanted to. As the father of young girl I want to...
2009-11-04
2,763 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