Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Encrypting at Destination using SSIS

Status
Not open for further replies.

DanEvans

MIS
Oct 15, 2001
29
US
Hi all,
I would like to use SSIS to transfer over data to a destination, but use a symmetric key on the destination server to encrypt data columns.

The idea is to use something like:
EncryptByKey(Key_GUID('sym_dbEncryptionTesting'), SomeField)...
I could easily transfer the data as cleartext, then append as encrypted data. However, I want to A) avoid physically storing the data as clear text at the destination first, and B) Avoid filling up my tran log with an insert statement.

Any ideas?

Thanks in advance for your help.

Thanks,
Dan
 
Why not encrypt it before it leaves the source system?

Denny
MCSA (2003) / MCDBA (SQL 2000) / MCTS (SQL 2005)

--Anything is possible. All it takes is a little research. (Me)
[noevil]
 
Unless I am mistaken, there is no way to encrypt on the source, transfer, and decrypt on the destination with the same keys. From what I have read, "persistent" encryption is not possible. If there is a way, that would be fantastic! Otherwise, I have to encrypt on the destination server or database so that I can decrypt it there as well.

Thanks,
Dan
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top