Ship Safe...Ship Often
How can we ship safe, and ship often? Steve Jones has a few comments on the need for better engineering.
2015-02-11
91 reads
How can we ship safe, and ship often? Steve Jones has a few comments on the need for better engineering.
2015-02-11
91 reads
2015-02-10
1,654 reads
2015-02-09
1,616 reads
Inspired by the movie with the same name, Steve Jones has a Friday poll about inspiration and ideas.
2015-02-06 (first published: 2010-08-06)
206 reads
2015-02-06
1,642 reads
2015-02-05
1,905 reads
2015-02-04
2,452 reads
2015-02-03
1,789 reads
I wrote about downloading the SQL Saturday data with Powershell, and that has worked well. However, I also need to...
2015-02-02
931 reads
I’m traveling next week to the SQL Konferenz in Germany, and then on to Red Gate in the UK.
However,...
2015-01-30
1,367 reads
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...
When starting with AWS RDS Aurora for managing relational databases in the cloud, many...
The optimal therapy for erectile dysfunction depends on individual health conditions, preferences, and treatment...
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