Friday Reading 2017-09-01
Going to be a busy few weeks as conference season gets into full swing. Really looking forward to the next...
2017-09-01
330 reads
Going to be a busy few weeks as conference season gets into full swing. Really looking forward to the next...
2017-09-01
330 reads
I’ve been meaning to get to grips with Kubernetes for a while now but I have to admit, I was...
2017-08-30
873 reads
Last week I was working on an upgrade and ran into a few issues. Whilst waiting for the company’s support...
2017-08-28
305 reads
Great week this week as I’ve been selected to speak at 4 of the SQL Relay events in October! Really...
2017-08-25
321 reads
I posted a couple of messages on twitter over the weekend giving any new bloggers advice that was given to...
2017-08-21
286 reads
One of the best features introduced in SQL Server 2016 was the Query Store. Having the ability to see which...
2017-08-19
537 reads
Cool week, I’ve been selected to present at SQL Saturday Holland & SQL Saturday Denmark this year. September and October are...
2017-08-18
375 reads
Last week I presented my session on SQL Server & Containers for the PASS Virtualization Group and during my prep I...
2017-08-28 (first published: 2017-08-16)
2,935 reads
Nice to be back after a week off. I’ve been writing three posts a week (sometimes more) since the beginning...
2017-08-14
348 reads
It’s a bank holiday weekend here in Ireland so I’m looking forward to having the extra day off. Bought a...
2017-08-04
354 reads
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...
A conversation with Jan Laš, CIO at HOPI, about what deploying a data agent...
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