Finding a New Laptop Bag – Progress!
Way back on May 19 I wrote about my search for a new laptop bag to replace my somewhat tattered...
2009-06-14
713 reads
Way back on May 19 I wrote about my search for a new laptop bag to replace my somewhat tattered...
2009-06-14
713 reads
Michelle Ufford (aka SQLFool) is leading the first SQLSaturday in Iowa at the University of Iowa in Iowa City on...
2009-06-14
761 reads
Patrick Leblanc is the event lead for SQLSaturday #17 coming up soon on August 1st. Patrick emailed me just a...
2009-06-11
541 reads
I picked up a copy of this from the local library after reading The Making of the Atomic Bomb. Oppenheimer...
2009-06-11
605 reads
First Man: The Life of Neil A. Armstrong ($14 @ Amazon) was a good book, enjoyed reading it. Some interesting tidbits...
2009-06-11
356 reads
I am at times an early adopter of technology. I like newer, better tools, but they have to be something...
2009-06-10
405 reads
I currently write the editorial for the PASS Connector which is published every two weeks as part of my role...
2009-06-09
334 reads
As background, I've never been a fan of multiple instances. It's a useful thing to have available and I use...
2009-06-09
393 reads
As I've related previously (Part 1, Part 2, Part 3, Part 4, Part 5) I've been working author and speaker...
2009-06-09
334 reads
Just received these from Karla:
Expectations: 0 Did not Meet, 4 met, 6 Exceeded.
Overall quality: Zero 1's, Zero 2's, Zero...
2009-06-08
293 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