TechUpdate Kosova (13th May 2009)
Yesterday, in Prishtina - capital city of Kosova, has been held the TechUpdate Seminar 2009 from Microsoft, organized from the Microsoft...
2009-05-14
1,020 reads
Yesterday, in Prishtina - capital city of Kosova, has been held the TechUpdate Seminar 2009 from Microsoft, organized from the Microsoft...
2009-05-14
1,020 reads
I've been reading What Got You Here Won't Get You There by Marshall Goldsmith over the past couple months, and...
2009-05-13
757 reads
Question: What mechanism allows SQL Server 2008 to commit transactions on the mirror faster than SQL Server 2005?
This question was...
2009-05-13
1,657 reads
Not MVP logo items, as I’m not sure if I really want to wear those. I was somewhat uncomfortable last...
2009-05-13
955 reads
Our most recent meeting was May 12, 2009, and we had 23 attendees. We started off the evening with news...
2009-05-13
582 reads
A better explanation from the SQLCAT team in this blog entry. I’d still like to see more, but this makes...
2009-05-13
657 reads
OK….so I’m in the middle of a very interesting Effective Dating project…basically we’re dealing with some tables that only store...
2009-05-13
1,621 reads
I was watching the TechEd 2009 keynote the other day and there was a lot of time spent on Windows...
2009-05-13
432 reads
I'm still learning and experimenting on the networking side, thought I'd share a few things I've seen or tried lately....
2009-05-12
625 reads
It's been a slower pace since the last update. Grant and I are working on the publication process for content...
2009-05-12
748 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