What kind of encryption mechanisms does SQL Server 2008 Standard offer?
As I see, TDE and EKM开发者_运维问答 mechanisms are available only in Enterprise edition. How can I encrypt data in tables in Standard edition of SQL Server 2008?
You have native encryption capabilities available.
In this article (http://msdn.microsoft.com/en-us/library/ms179331.aspx) an example is provided showing how to do the following:
Master key Certificate Symmetric key Apply the encryption key to the column.
You do not need to have enterprise edition for this option.
The article above tells you step by step on implementing a column level encryption.
精彩评论