0

I've downloaded an ADO.NET and ODBC connector from the MySQL website. I'd like to access a remote MySQL server from within BIDS with the goal of importing the remote data and populating a local SQL Server database.

While it looks like making the connection is relatively easy, does anyone know if it's possible to connect securely so that data is encrypted?

MattB
  • 238
  • 2
  • 3
  • 10

1 Answers1

1

Is deploying an SSL Certificate an option?

http://www.connectionstrings.com/mysql#p31

Using SSL

Driver={MySQL ODBC 5.1 Driver};Server=myServerAddress;Database=myDataBase;User=myUsername; Password=myPassword;sslca=c:\cacert.pem;sslcert=c:\client-cert.pem;sslkey=c:\client-key.pem;sslverify=1;Option=3;

Also, Matthew Flaschen suggests an option here: link

EngineeringSQL
  • 275
  • 1
  • 2
  • 8
  • Thanks. Deploying a certificate is an option on the MySQL side, but not the SQL Server side. – MattB Nov 15 '10 at 21:57