0

I want to know that, is there any feature in SQL Server 2008 for column level data encryption like TDE?

masoud ramezani
  • 22,228
  • 29
  • 98
  • 151

1 Answers1

0

You could try writing a view with triggers for insert, update, and delete on top of your data that uses one of the cell-level encryption functions. The user of the view would need to have the key open, but it should work aside from that.

Ben Thul
  • 31,080
  • 4
  • 45
  • 68