The Book of Redgate: What Our Staff Says
This image is from 2010, and it goes along with my last post of what our Customers Say about us. However, this is what our employees said about the...
2025-12-05
24 reads
This image is from 2010, and it goes along with my last post of what our Customers Say about us. However, this is what our employees said about the...
2025-12-05
24 reads
here is the compiled video of the Red Teaming course Microsoft put together.
2025-12-04
20 reads
Rodney Kidd took some great shots of the keynote and published an album here: https://www.flickr.com/photos/127113040@N04/albums/72177720330695911 A few of my favorites: Here’s one of the 8 ball and keynote (and...
2025-12-04
14 reads
TSQL ScriptDOM is a useful library for parsing scripts into an abstract syntax tree. I've built a web tool that helps visualize this tree as a learning exercise.
Foreword
I've leveraged...
2025-12-03 (first published: 2025-11-09)
113 reads
SQL Server 2025 is Generally Available
The post SQL Server 2025: What’s New and Why It Matters appeared first on Tim Radney.
2025-12-03
91 reads
Tech conferences aren't just for networking and learning how to address a problem you're having technically. They are also for expanding your view of what's possible.
2025-12-03 (first published: 2025-11-20)
12 reads
With all the changes that have happened with VMware since the Broadcom acquisition I have been asked more and more about alternatives for running SQL Server. One of the...
2025-12-02
38 reads
Some of the best career enhancers you can buy. Why I Go to Conferences I go for two big reasons: Learning from the best. The folks teaching at...
2025-12-01 (first published: 2025-11-12)
278 reads
Earlier this year I visited a customer that was using the Redgate Monitor webhook to integrate with ServiceNow. However, they were also trying to integrate in a richer way...
2025-12-01 (first published: 2025-11-10)
319 reads
After I have understood the details for a certification test (part 1), including format and the rules for taking it and after I have taken time to learn how...
2025-12-01
18 reads
By SQLPals
Track SQL Server Configuration Changes Using the Error Log If you...
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...
We have a SQL Server installed. We have a 500GB drive for the database....
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...
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