SQLServerCentral Editorial: The Perfect Environment
I write editorials once or twice a month for SQLServerCentral and have fallen out of the habit of mentioning them...
2014-03-28
534 reads
I write editorials once or twice a month for SQLServerCentral and have fallen out of the habit of mentioning them...
2014-03-28
534 reads
I’ve volunteered to lead the marketing effort for SQLSaturday Orlando this year. Broadly speaking that means drive attendance to the...
2014-03-28
498 reads
My latest question is live today – Can’t See The Forest For the Logins is worth 2 points if you’re playing...
2014-03-28
438 reads
If my blog history is correct the last time I presented at oPASS was January 2012 – that seems like a...
2014-03-26
626 reads
My latest question The Unusable User is live today over at SQLServerCentral. It’s a three pointer, how is that for...
2014-03-26
691 reads
Nice to have a SQL track! Looked like it averaged 20-25 attendance per session.Ran smooth, thanks to Esteban Garcia and...
2014-03-24
525 reads
Rodney Landrum presentingLots of free form demos, very light on slides – nice changeLooked at Power Pivot, Power Query, and Power...
2014-03-24
602 reads
Got the email confirmation yesterday that I’m on the schedule – looking forward to being back in Jacksonville.
2014-03-24
501 reads
Hopefully you had a chance to answer the Alas Poor Snapshot, I Knew Him Well question of the day than...
2014-03-21
445 reads
If you’ve followed my writing for a while you’ll know I’m a fan of translucency (transparency) in most things business....
2014-03-20
521 reads
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...
It's time for T-SQL Tuesday #198! This month's topic is change detection. The post T-SQL...
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