The SQL Server community and the rising tide (and all that).
I was speaking with one of my favorite people in the SQL Server community, Grant Fritchey (blog|twitter), on twitter today. ... Continue reading
2021-07-06
95 reads
I was speaking with one of my favorite people in the SQL Server community, Grant Fritchey (blog|twitter), on twitter today. ... Continue reading
2021-07-06
95 reads
Being heavily involved with Microsoft Azure and database technologies it was only a matter of time that I would enter the world of Azure Container Instances (ACI). The same...
2021-07-05
39 reads
I started to add a daily coping tip to the SQLServerCentral newsletter and to the Community Circle, which is helping me deal with the issues in the world. I’m...
2021-07-05
17 reads
In my last post I talked about reasons why your permissions might go missing. One of the reasons, and in ... Continue reading
2021-07-05 (first published: 2021-06-24)
237 reads
In the last few posts, I’ve written about using the SQL Compare command line for a specific object and shown how to get a report. This post will look...
2021-07-05
54 reads
After a very long work, a new version of www.SQLpassion.at was deployed last Thursday. It includes a brand-new corporate design, which is much more modern than the older version....
2021-07-05
11 reads
After a very long work, a new version of www.SQLpassion.at was deployed last Thursday. It includes a brand-new corporate design, which is much more modern than the older version....
2021-07-05
17 reads
After a very long work, a new version of www.SQLpassion.at was deployed last Thursday. It includes a brand-new corporate design, which is much more modern than the older version....
2021-07-05
14 reads
After a very long work, a new version of www.SQLpassion.at was deployed last Thursday. It includes a brand-new corporate design, which is much more modern than the older version....
2021-07-05
9 reads
After a very long work, a new version of www.SQLpassion.at was deployed last Thursday. It includes a brand-new corporate design, which is much more modern than the older version....
2021-07-05
12 reads
Good documentation gets you started. Good books get you deep. After years of working...
By Vinay Thakur
In previous posts, we looked at the SQL Server engine. for us DBAs, the...
By Arun Sirpal
You have used Claude. But which Claude? The Claude app (claude.ai, the desktop and...
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