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,178 reads
Learn about restoring your keys from an Azure Key Vault in the event of a DR situation.
2026-05-13
1,178 reads
In this level we learn how to ensure our keys are backed up to the Azure Key Vault for safekeeping.
2026-04-22
705 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,257 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,903 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,800 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,923 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,043 reads
In this article, learn how to use the PowerShell DSC to patch your SQL Server instances.
2024-04-05
5,594 reads
Learn how you can install SMSS automatically using PowerShell DSC as this series continues.
2024-01-31
3,452 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,622 reads
Reading tutorials is fine. Shipping something is better. If you are trying to break...
By Steve Jones
We work hard at Redgate, though with a good work-life balance. One interesting observation...
By Arun Sirpal
Fourth in a series on Ai and databases. What Read-Only Advisory Actually Means A...
Comments posted to this topic are about the item Displaying Money
Comments posted to this topic are about the item The Slow Growing Problems
Comments posted to this topic are about the item Calculating the Harmonic Mean in...
I want to get the currency sign displayed with my amount stored in a money type. Does this work?
DECLARE @Amount MONEY; SET @Amount = '?1500'; SELECT CAST( @Amount AS VARCHAR(30)) AS EurosSee possible answers