Home Forums SQL Server 2005 Business Intelligence What are the best way to move data securely over the network by SSIS? RE: What are the best way to move data securely over the network by SSIS?

  • You can setup SQL Server to use SSL for connections. I would think that this would be the best way. Otherwise I think you'd have to do some kind of encryption of the data at the source, load the encrypted data into the destination, and then have a process at the destination that runs locally to decrypt the data and insert into the final destination database.