The Backlog
A backlog is important for software development, and Steve has a few thoughts on how to add things to the backlog.
2022-04-08
265 reads
A backlog is important for software development, and Steve has a few thoughts on how to add things to the backlog.
2022-04-08
265 reads
The way different generations use computers could affect how we built software tools.
2022-03-14
131 reads
Is DevOps and Agile better than waterfall? Steve has a few thoughts after a recent experience.
2022-02-07
239 reads
Every year I'm responsible for a portion of the Database Weekly newsletters. I used to do half, but right now Kathi, Grant, and I are on a rotation. Our boss puts out a schedule each year, which tells me the weeks for which I am responsible. Each January I then set up a recurring appointment […]
2022-01-17
187 reads
Writing code that solves problems and adapts to the future is a challenge, but it's something we should think about.
2022-01-12
278 reads
We need to approach software development with a balance of making things better, and ensuring they work.
2021-12-08
225 reads
Lessons learned from building a database caught Steve's eye, and he has a few comments.
2021-12-01
619 reads
Building software is hard, and our systems are very complex these days.
2021-11-22
375 reads
Using an API for data access can be good, but it can also be a performance problem if everyone uses it.
2021-11-17
883 reads
The process of building software for others involves lots of decisions. Ensuring that you are making good decisions can impact how others view your final product.
2021-09-27
192 reads
By Steve Jones
This month we have a new host, Meagan Longoria, who graciously agreed to help...
By Steve Jones
I’m at the UK Redgate office today, meeting with senior leaders in all areas...
Optimizing Azure SQL Database performance often begins with identifying the most resource-intensive queries. Understanding...
Comments posted to this topic are about the item Creating a JSON Document IV
By VishnuGupthanSQLPowershellDBA
Comments posted to this topic are about the item Restoring Azure Key Vault Keys...
When the schema of an object is changed, SQL Server wipes out the previous...
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 YearEstablished, json_objectagg(city : TeamName) FROM dbo.NFLTeams GROUP BY YearEstablished;See possible answers