Restoring Azure Key Vault Keys and Validating SQL Server TDE Recovery: Level 7 of the Stairway to TDE
Learn about restoring your keys from an Azure Key Vault in the event of a DR situation.
2026-05-13
1,085 reads
Learn about restoring your keys from an Azure Key Vault in the event of a DR situation.
2026-05-13
1,085 reads
In this level we learn how to ensure our keys are backed up to the Azure Key Vault for safekeeping.
2026-04-22
695 reads
In this third level of the Stairway, we examine how to store your encryption certificate in the Azure Key Vault.
2026-04-15 (first published: 2020-06-24)
9,204 reads
Learn how to remove TDE from a database and return it to a normal state.
2026-04-15 (first published: 2020-08-26)
10,879 reads
In the second level of the stairway to TDE, we examine how you can restore your databases on another instance after moving the encryption certificate.
2026-04-15 (first published: 2020-05-20)
54,645 reads
The first level of the Stairway to TDE will explain how the feature works and how to set this up on one of your instances and databases.
2026-04-15 (first published: 2020-04-29)
11,861 reads
This next level of the Stairway to TDE shows how to upgrade your EKM cryptographic provider.
2026-04-15 (first published: 2024-07-17)
1,020 reads
In this article, learn how to use the PowerShell DSC to patch your SQL Server instances.
2024-04-05
5,555 reads
Learn how you can install SMSS automatically using PowerShell DSC as this series continues.
2024-01-31
3,440 reads
Introduction In the previous article, we learned how to install a SQL Server instance with basic parameters like InstanceName, Features, SourcePath, SQLSysAdminAccounts, etc using Powershell DSC. In this article, we'll discover how to enhance our SQL Server installation with additional configurations. We'll cover things like setting up service account credentials, custom installation directories, configuring TempDB […]
2023-11-22
5,567 reads
By Steve Jones
Redgate is a for-profit company. We look to make money by building and selling...
I’ve uploaded the slides for my Techorama session Microsoft Fabric for Dummies and my...
If you've ever loaded a 2 GB CSV into pandas just to run a...
Comments posted to this topic are about the item Even When You Know What...
Comments posted to this topic are about the item The New Software Team
Comments posted to this topic are about the item Database Mail in SQL Server...
We create the following table and then insert some records in it:
create table t1 ( id int primary key, category char(1) not null, product varchar(50) ); insert into t1 values (1, 'A', 'Product 1'), (2, 'A', 'Product 2'), (3, 'A', 'Product 3'), (4, 'B', 'Product 4'), (5, 'B', 'Product 5');What happens if we execute the following query in both Sql Server and PostgreSQL?
select id,
category,
string_agg(product, ';')
over (partition by category order by id
rows between unbounded preceding and unbounded following) as stragg
from t1; See possible answers