Author |
Topic |
Architect
Starting Member
8 Posts |
Posted - 2008-02-28 : 17:14:48
|
I need to pull data out of SQL Server 2005 and load it into a MySql 5 database, and can't find a way to do this efficiently in SSIS since there's no ODBC destination, and I couldn't find an Oledb driver for MySQL. Any thoughts on the best way to accomplish this, aside from exporting to text, and then loading it into MySql via the mysql client or mysql importer?-A |
|
tkizer
Almighty SQL Goddess
38200 Posts |
Posted - 2008-02-28 : 18:18:00
|
If you install whatever driver mysql 5 uses onto the SQL Server, then you'll have that driver available in SSIS.Tara KizerMicrosoft MVP for Windows Server System - SQL Serverhttp://weblogs.sqlteam.com/tarad/ |
 |
|
khtan
In (Som, Ni, Yak)
17689 Posts |
|
rmiao
Master Smack Fu Yak Hacker
7266 Posts |
Posted - 2008-03-01 : 22:34:10
|
You can download MySql odbc driver from MySql site. |
 |
|
Architect
Starting Member
8 Posts |
Posted - 2008-03-03 : 23:29:56
|
The ODBC driver doesn't solve the issue since SSIS only supports OLEDB destinations. |
 |
|
tkizer
Almighty SQL Goddess
38200 Posts |
Posted - 2008-03-03 : 23:36:47
|
quote: Originally posted by Architect The ODBC driver doesn't solve the issue since SSIS only supports OLEDB destinations.
Since when?Tara KizerMicrosoft MVP for Windows Server System - SQL Serverhttp://weblogs.sqlteam.com/tarad/ |
 |
|
rmiao
Master Smack Fu Yak Hacker
7266 Posts |
Posted - 2008-03-03 : 23:38:47
|
Microsoft has ole db provider for odbc driver by the way. |
 |
|
opc.three
Starting Member
5 Posts |
Posted - 2012-06-29 : 15:57:45
|
quote: Originally posted by tkizer
quote: Originally posted by Architect The ODBC driver doesn't solve the issue since SSIS only supports OLEDB destinations.
Since when?Tara KizerMicrosoft MVP for Windows Server System - SQL Serverhttp://weblogs.sqlteam.com/tarad/
I know I am grave-digging on this thread but this is a top result on Google when looking for info on loading data into MySQL using SSIS 2005 so I wanted to update the thread.Architect is correct. In SSIS 2005, which the OP is using, we do not have a true "ODBC Destination" component. In SSIS 2008 we can load data using ODBC, however only via the "ADO NET Destination".It was not until SSIS 2012 was delivered earlier this year that we gained native access to ODBC as a destination: http://msdn.microsoft.com/en-us/library/hh758691%28v.11.0%29.aspxMake everything as simple as possible, but not simpler. -- Albert Einstein |
 |
|
opc.three
Starting Member
5 Posts |
Posted - 2012-06-29 : 16:01:18
|
quote: Originally posted by rmiao Microsoft has ole db provider for odbc driver by the way.
MSDASQL was deprecated before SQL Server 2005 was released and never worked with SSIS 2005.Make everything as simple as possible, but not simpler. -- Albert Einstein |
 |
|
|