dotConnect Mysql and ssis multi query
Posted: Sat 03 Mar 2012 10:20
Hello,
I need to make an ssis to update a sql server database.
my first try works very well with simple insert off my mysql database in sqlserveur I use:
- Sql task
- Data flow
by cons I can not coment do an update request with a more complex query example:
Fiches is sql server database
got_pays is the mysql database
I need to update a database sql server with a request like this:
UPDATE Fiches
SET = Fiches.pays_nom = got_pays.pays_nom
FROM Sheets, got_pays
WHERE (got_pays.id = Fiches.id_pays)
how to do this in ssis j'm looking for examples but I have found nothing.
thank you for your help.
I need to make an ssis to update a sql server database.
my first try works very well with simple insert off my mysql database in sqlserveur I use:
- Sql task
- Data flow
by cons I can not coment do an update request with a more complex query example:
Fiches is sql server database
got_pays is the mysql database
I need to update a database sql server with a request like this:
UPDATE Fiches
SET = Fiches.pays_nom = got_pays.pays_nom
FROM Sheets, got_pays
WHERE (got_pays.id = Fiches.id_pays)
how to do this in ssis j'm looking for examples but I have found nothing.
thank you for your help.