Free Training Webinar Series - October
A series of free webinars from Pragmatic Works that cover a variety of topics in October.
A series of free webinars from Pragmatic Works that cover a variety of topics in October.
In part two of his editorial series on moving to being a manager, Justin H-Davies talks about the challenges that are evolving of being a manager.
Time for the ghouls and goblins to come out of the woodwork once again for another tale of deception and...
Whilst it may be more exciting as a DBA to rush around fixing broken databases, it is far better to forestall problems by making sure that your servers conform with best-practices. It is even better if you can also manage your servers centrally, and monitor that they are all adhering to company policies.
It’s time for T-SQL Tuesday again, and I’m happy to participate again. This is a monthly blog party started by...
SQL Saturday is bringing a free day of training to NYC this November.
In this article, learn why it makes sense to build a more standarized, more robust database based on rules and see how data modeling works in the RAP software.
Did malware cause a plane crash? Not likely, but Steve Jones warns us it could and we need to be very security conscious when we have computers linked together in transportation systems.
More Free Training is coming to a computer near you from the AppDev, BI, and DBA Virtual Chapters of PASS.
Learn how to restore a LiteSpeed backup on a server without the software in 2 Simple Steps.
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