SQL Server 2008 Standard Edition Encryption

Answered SQL Server 2008 Standard Edition Encryption

All Replies

  • Thursday, January 07, 2010 8:06 PM
     
     Answered

    TDE is entirely different from column-level encryption that you are looking at.
    From SQL Server 2005, native encryption capabilities are available.
    In this article (How To: Encrypt a Column of Data) an example is provided to build the following:
    Master key
    Certificate
    Symmetric key
    Apply the encryption key to the column.

    You dont need to have enterprise edition for this option.
    The article above tells you step by step on implementing a column level encryption.

    And this article from MS guys Laurentiu should also help you - http://blogs.msdn.com/lcris/archive/2005/06/10/sql-server-2005-column-encryption-demo-part-2.aspx
    Thanks, Leks
    • Marked As Answer by MikeVB Thursday, January 07, 2010 8:51 PM
    •  
  • Thursday, January 07, 2010 8:51 PM
     
     
    Thank you very much.  This is just what I need to know.