2015-01-23
374 reads
2015-01-23
374 reads
I had an SSD die last year. It was one of my traveling SSDs, where I keep spare copies of...
2015-01-23 (first published: 2015-01-16)
6,617 reads
2015-01-23
2,618 reads
Technology shouldn't just be a cost sink in an organization, at least that's what Steve Jones thinks.
2015-01-22
116 reads
2015-01-22
2,425 reads
There's one word that can make a difference in how much you like your job. Steve Jones has a few thoughts today.
2015-01-21
223 reads
2015-01-21
2,570 reads
I showcased a demo recently that looked at a potential issue with an application where a user used a simple...
2015-01-20 (first published: 2015-01-12)
6,538 reads
2015-01-20
2,219 reads
Steve Jones talks about procrastination today and how you might not want to do that with your SQL Servers.
2015-01-19
113 reads
By Steve Jones
I went to sleep while reading a Kindle book on my phone. I know...
It's time for T-SQL Tuesday #198! This month's topic is change detection. The post T-SQL...
By James Serra
Model Context Protocol, or MCP, is one of those technical ideas that sounds more...
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