I received the task to provide a possibility to import highly sensitive data to a SQL Server 2012. There are pretty high restrictions and requirements concerning the data:
Neither the Dev Team (incl. me) nor the DBAs are allowed to see the (productive) data
The Data has to be imported from csv files - which again will not be accessible to us
Only two dedicated users may have access to the mentioned data
For the time being the data will be processed via SSRS only, but it is possible that it has to be loaded to a cube
Now, stumbling through the web and verbosing many nice approaches such as "always encrypted" due to lag of compatibility (as mentioned: SQL Server 2012 available only) I tripped over "TDE" and wondered, if this would fulfill the requirements? If I'm not mistaken, it should cover most of the mentioned topics:
encryption via certificates
certificates can be assigned per user
data encryption within the DB - so users whithout the certificate can not read the data
certificates will be recognized by all apps such as SSRS, SSAS etc - so no special coding required here in order to perform decryption
So, if the import of the csv is correctly configured (secured path with source files etc.) and the data is stored into an encrypted database, the data should be protected pretty good...
Does anyone here already have experience concerning this topic? Has anyone got any better suggestions / other ideas how to implement the storing of highly sensitive data? Any help would be highly appreciated.