Amazon RDS (Relational Data Warehouse) and SSIS

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

+4
source share
2 answers

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

+2
source

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

+1
source

Source: https://habr.com/ru/post/1300123/


All Articles