This blog explains the steps needed to set up Transparent Data Encryption (TDE) and database in Always on AG group using AutoSeeding method. (Applies to 2016 and above).
Always on - Beginning with SQL Server 2012, A new high availability and DR solution was introduced, Always On. By offering a failover environment for availability databases that failover jointly and are a part of an availability group, it improves availability.
TDE -
The “data at rest” encryption technology known as SQL Server Transparent Data Encryption, or TDE, is made available as an Enterprise Edition feature in SQL Server 2008. Instead of encrypting the data directly using the Advanced Encryption Standard (AES) or Triple DES (3DES), The physical files utilised by the SQL Server database’s data, logs, backups, and snapshots are encrypted in real time by TDE.
TDE encrypts database data files with a Database Encryption Key secured by a Certificate and a Master Key kept in the master database.
Auto Seeding – With SQL Server 2016, a new technique known as Automatic Seeding was added to add databases to availability groups. With this technique, full database backups are performed using Microsoft SQL Server Virtual Device Interface (VDI), which are then streamed over the network to all accessible secondary replicas where they are restored and added to the availability group.
**Availability TDE was included in Microsoft SQL Server 2008, 2008 R2, 2012, 2014, 2016, and 2017 in Evaluation, Developer, Enterprise, and Datacentre versions. In SQL Server 2019, Microsoft made it available in the Standard edition as well.
In this blog, will demonstrate how to (Presuming database is already TDE enabled) -
For demonstration, we are going to use two node AG – Primary replica – SQLNODE1 Secondary replica – SQLNODE2 AG Name – AGTEST Database – TDEDemo
Step 1 - Validate transparent data encryption in SQL Server by running query
– Validate transparent data encryption in SQL Server.
State 3 in encryption state means database is encrypted. Run following query to get further details about TDE -
Step 2 - Backup the certificate and private key on the primary replica to restore on Secondary replica using query Script2.txt
Step 3 - Create certificate on the secondary replica from the primary replica certificate (Step 2) using query Script3.txt
Add Database in Always on AG using AutoSeeding mode. Distributing encryption certificates among all the participating replicas is necessary before adding a database to AG.
Step 1. Enabling Automatic Seeding We must permit the AG to create databases on every replica where automatic seeding is necessary. In our case, we have executed on both SQLNode1 and SQLNode2.
Once done, enable automatic seeding mode by running below code on Primary replica for each replica in the AG -
By default, compression is not enabled for the automatic seeding streaming. We can add trace flag 9657 to enable the compression either in start-up parameter or using DBCC TRACEON command. Below command will enable the trace flag at a global level.
DBCC TRACEON (9567,-1)
Step 3. Add database in AG
Step 3. Add database in AG
Databases that are already encrypted using TDE encryption cannot be added to an Availability Group by the Add Database Wizard for AlwaysOn Availability Groups. If you attempt to use the Add Database Wizard to add the TDE-encrypted TDEDemo database, the wizard will inform you that this is not applicable because the database contains the following encryption key:
This means that we need to add the database to the Availability group using TSQL using query - Script6.txt
Step 4. Validate the progress using DMV using query -
Step 5. Validate AG Status in Dashboard
Launch failover availability group wizard and select the new primary replica. In my case, we have the following configurations.
AG failover is successful.
Launch AG Dashboard on new primary (SQLNODE2) and validate status :
We can combine multiple features like TDE, Always-on, Automatic seeding of SQL Server 2019 (SQL server 2016 and above) to add database single or multiple databases in availability group. Even though it cannot be achieved using Graphical interface (GUI) as a limitation till date but hoping Microsoft adds this feature in future release.
Learn about Rackspace Managed SQL Databases.
Learn about Rackspace Database Services.
Use the Feedback tab to make any comments or ask questions. You can also start a conversation with us.