Sunday, October 22, 2017

Azure SQL to On-Premise SQL Server Data Transfer

I need to securely transfer data from a SQL Server in Microsoft Azure to a SQL Server on-premises. I have been researching different methods but I have not found the right way.



Following is the list of what I have considered.




  1. Encrypted SQL Server connection. How can I selectively enforce encryption on particular IP addresses? The source SQL Server services other clients that are not ready for enforced encryption.

  2. Azure Data Factory Integration Runtime. It looks like it is in alpha version and designed for full integration and not file sharing between independent parties.

  3. SSH Tunnel. What is the best way to setup SSH server and client on Windows?

  4. File transfer using SFTP. This method is inefficient and does not allow for real time access.


  5. Other method that you suggest?

No comments:

Post a Comment

linux - How to SSH to ec2 instance in VPC private subnet via NAT server

I have created a VPC in aws with a public subnet and a private subnet. The private subnet does not have direct access to external network. S...