Basic Git for DBAs: Managing PowerShell Scripts
This next article in the git series looks at managing powershell code in Git.
2022-04-11 (first published: 2020-08-27)
5,044 reads
This next article in the git series looks at managing powershell code in Git.
2022-04-11 (first published: 2020-08-27)
5,044 reads
Steve doesn't think microservices work with relational databases, but maybe you can convince him otherwise.
2020-08-27
273 reads
Steve looks at some of the software development trends from last year, and if they apply today.
2020-08-24
202 reads
2020-08-18
114 reads
2020-06-30
186 reads
Building better software might be a bit more work when we consider ensuring everyone can use our work.
2020-05-25
100 reads
We often learn to write code before we really learn to read it, which seems like a problem to Steve.
2026-05-13 (first published: 2020-05-21)
155 reads
2020-05-19
92 reads
Steve prefers having standards, and today notes that aliases should be included in your standards document.
2020-04-28
145 reads
Running software teams isn't as easy as it may seem, and the way you manage a startup is different than a mature organization. Steve has a few comments on the process one angel investor implements.
2020-04-14
111 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