views:

144

answers:

2

Does anyone know if it is possibble to use SSIS with Amazon RDS? Since RDS is essentially MySQL - would this be possible using OLE DB or something...?

+1  A: 

Amazon RDS offers complete support for all MySQL features except for replication. Therefore you can use OLE DB, or any other driver, to access MySQL from your application.

Daniel Vassallo
+1  A: 

I would recommend you use MySQL ODBC driver in combination with ADO.NET Source component. The ODBC provider is the most stable.

CozyRoc