Encrypting Data With Symmetric Keys in SQL Server
Written by ywhitaker on February 14, 2010 – 9:51 pm
SQL Server 2005 introduced native database encryption capabilities. This, simply put, makes it easy for you to protect sensitive data from outside attacks. This article looks at how to set up and use encryption on a simple database table.
First, create a table for testing purposes in your existing database:
CREATE TABLE [dbo].[CreditCards] (CardId INT PRIMARY KEY [...]