views:

98

answers:

2

I want to be able to email a report daily from a glpi database in MySQL. I would like to create a SSIS job to pull data from MySQL. How do I do this?

A: 

I would suggest using ODBC or the MySQL .NET adapter. SSIS can easily use these connections

Brettski
+1  A: 

Create a Linked Server to mySQL from SQL Server 2005.

Sung Meister
This is what I would do. Install the MySQL ODBC Driver on your SQL Server platform and then you can reference your MySQL database from withing SQL Server
John Sansom