PASS Summit 2012-Wednesday Keynote Part 2
Ted Kummert speaking.
Talking about SQLFamily and the way this event feels like a family reunion (it does)Showing a picture of...
2012-11-07
823 reads
Ted Kummert speaking.
Talking about SQLFamily and the way this event feels like a family reunion (it does)Showing a picture of...
2012-11-07
823 reads
It’s 8:15 on Wednesday and I’m at the blogger table, hoping for a good to great keynote.
First up is Bill...
2012-11-07
780 reads
If you’re in Seattle for the PASS Summit and would like a chance to meet some new people in a...
2012-11-05
827 reads
I started this trip with a 4:30 am wake up on Sunday to be at the airport for the direct...
2012-11-05
834 reads
I like reading and while I read more on an e-reader than I used to, I still prefer the printed...
2012-11-05
839 reads
I tend to take it for granted and I imagine most of you do as well, but not everyone is...
2012-11-01
813 reads
I’ve been living with my Mac Air for a few weeks now, thought I’d share some quick thoughts:
I miss the...
2012-10-24
811 reads
Congratulations to Wendy Pastrick, James Rowland-Jones, and Sri Sridharan on winning a two year term on the PASS Board of...
2012-10-17
805 reads
We just crossed the 100 mark for registrants for our Monday Night Networking Party and still room for more. If...
2012-10-12 (first published: 2012-10-09)
1,813 reads
I was just answering an email and realized I’m behind on posting on a few topics, one of them the...
2012-10-08
929 reads
PlanTrace: Stop Reading Redshift EXPLAIN Plans. Start Seeing Them Introducing PlanTrace — a free, browser-based...
By Steve Jones
I went to sleep while reading a Kindle book on my phone. I know...
A conversation with Jan Laš, CIO at HOPI, about what deploying a data agent...
We suffered a SPAM attack from May 1-6, which unfortunately corresponded with time off...
Hi to all We have situation at a client where someone is illegally changing...
Hi to all We have situation at a client where someone is illegally changing...
I have this data in a table called dbo.NFLTeams
TeamID TeamName City YearEstablished ------ -------- ---- --------------- 1 Cowboys Dallas 1960 2 Eagles Philadelphia 1933 3 Packers Green Bay 1919 4 Chiefs Kansas City 1960 5 49ers San Francisco 1946 6 Broncos Denver 1960 7 Seahawks Seattle 1976 8 Patriots New England 1960If I run this code, how many rows are returned?
SELECT TOP 2
json_objectagg('Team' : TeamName)
FROM dbo.NFLTeams;
See possible answers