Link to home
Start Free TrialLog in
Avatar of venk_r
venk_rFlag for United States of America

asked on

Row level Encryption for multi Tenant system

We have been asked to implement row level encryption for a multi tenant system.
In other words,each client will have unique encryption algorithm.
Can I use TDE  feature on SQL 2008 to acheive this?If yes, then how.
Thanks
Avatar of DBAduck - Ben Miller
DBAduck - Ben Miller
Flag of United States of America image

TDE is whole database encryption.  So row level is not an option with TDE.
Avatar of venk_r

ASKER

So how will I be able to acheive this?Do I need to write native encryption?
You will have to use cell level encryption for the columns.  You could use encryption on the application side, but when you want row encryption that has to be different for different tenants, the options are a lot more difficult.
ASKER CERTIFIED SOLUTION
Avatar of Ryan McCauley
Ryan McCauley
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of venk_r

ASKER

thanks