Quick Audio Switching
I’ve got a semi complicated desktop setup, with multiple monitors, lots of USB stuff, and a few ways to record...
2014-12-19
890 reads
I’ve got a semi complicated desktop setup, with multiple monitors, lots of USB stuff, and a few ways to record...
2014-12-19
890 reads
2014-12-19
112 reads
I was scanning Twitter the other day and saw a note from someone that they had written a query using...
2014-12-18 (first published: 2014-12-11)
7,879 reads
I’ve spoken at lots of events, but all in the US and the UK. Next year I get my first...
2014-12-17
802 reads
2014-12-17
1,944 reads
The SQL Server community is amazing, and Steve Jones hopes we continue to be close as we grow. He brings light on an idea to grow us larger, but smaller.
2014-12-16
151 reads
I noticed a contest this week while working on the Database Weekly newsletter. It’s the Cloud Hero contest, with the...
2014-12-16
721 reads
2014-12-15
98 reads
Steve Jones notes that disasters come in all shapes and sizes, but a little prep that you might not have thought of can reduce the scale of the issues.
2014-12-15
196 reads
Recently I was working on transforming some dates, and wanted to generate a large n number of dates for testing....
2014-12-15
1,300 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