Various Links-August 25, 2012
Great story about a client who didn’t under the different between Skype and Sharepoint – while doing a Sharepoint initiative! It’s...
2012-08-25
733 reads
Great story about a client who didn’t under the different between Skype and Sharepoint – while doing a Sharepoint initiative! It’s...
2012-08-25
733 reads
I ran across this report that talks about the effectiveness of transparency requirements put in place around the Recovery Act...
2012-08-24
652 reads
Yesterday I went to the new Microsoft store at Florida Mall, mostly out of curiosity and something to do at...
2012-08-23
808 reads
I’m writing this Friday evening in Cleveland at the hotel, relaxing after the speaker dinner and getting ready for SQLSaturday...
2012-08-22
701 reads
I like a good status report. It may contain a few sentences or a page full of data and gauges,...
2012-08-20
3,977 reads
My friend Steve Jones and I have talked every week for a long time, close to ten years now. On...
2012-08-18
973 reads
24 Hours of PASS (24HOP) has been around a few years now, but this will be my first time participating...
2012-08-16
559 reads
I’ve been reading about wooden hand planes lately (as opposed to hand planes made of metal that plane wood) and...
2012-08-14
888 reads
My 2011 version of Live Writer didn’t seem to want to embed a Vimeo video, so I checked for an...
2012-08-14
527 reads
I’m flying in on Sunday again this year, arriving in time for lunch, and looking forward to the luxury of...
2012-08-14
614 reads
By Vinay Thakur
These days everything is changing to AI World, IT roles are getting changed and...
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...
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