Setting up Transparent Data Encryption

This recipe shows how you can set up Transparent Data Encryption using PowerShell and SMO.

Getting ready

Transparent Data Encryption (TDE) is supported only in Enterprise, Developer, or Evaluation editions.

In this recipe, we will enable TDE on the TestDB database. If you don't already have this test database, log in to SQL Server Management Studio and execute the following T-SQL code:

IF DB_ID('TestDB') IS NULL
CREATE DATABASE TestDB
GO

You should already have a database master key for this TestDB database. If you don't have one, create it using the Creating a database master key recipe.

How to do it...

These are the steps to set up TDE programmatically:

  1. Open PowerShell ISE as an administrator.
  2. Import the SQLPS ...

Get SQL Server 2014 with PowerShell v5 Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.