existing column Level encryption in sql server2008

  • Hi,

    how to set the column level encyption in sql server 2008 in production enviroment without drop existing column and what are method available for encrypt the data in sql server 2008 standard edition.

  • Coolroof (3/18/2013)


    Hi,

    how to set the column level encyption in sql server 2008 in production enviroment without drop existing column and what are method available for encrypt the data in sql server 2008 standard edition.

    Column level encryption is available from express edition.

    All encryption method generate a varbinary as output so you probably must add a new column of varbinary type, encrypt the data, remove the old not encrypted and make appropriate change to application/sp to use column level encryption.

    Example http://msdn.microsoft.com/en-us/library/ms179331%28v=sql.105%29.aspx/

  • without creating varbinary column not possiable..?

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply