SQL Server 2005 to MySQL connection - mysql

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?

Create a Linked Server to mySQL from SQL Server 2005.

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

Related

Using SSRS Reports with MySQL

Currently I am using SSRS reports with MSSQL. Now I am changing my database from MSSQL to MySQL for cloud migration. On cloud I wont be having MSSQL installed. So is it possible to use SSRS reports(with MySQL datasource) without having MSSQL installed ?
Thanks in advance.
It is possible to use and ODBC Data Source in SSRS, I believe this is not allowed when using SQL Server Express.
Another option which requires SQL Server but is available on Express is to use the add linked server stored procedure. SSRS will obtain data from your SQL Server database, which you can setup to access your MySQL linked server.

How can I merge a MS SQL Server database to a MySQL database?

I have a Microsoft SQL Server database and I want to restore that database to MySQL.
How can I do this?
This is possible by installing MySql Migration tool kit.
After that follow below steps.

How to access remote MicroSoft SQL Server database from a stored procedure in MySQL

I need to access a remote Microsoft SQL Server database from a stored procedure in MySQL database.
I googled and found that there is a way to access a remote MySQL using federated tables. But I couldn't find anyway to do access MS SQL Server. My exact requirement is, I need to write a stored procedure which can duplicate all the tables and data from a remote MS SQL server database to a local MYSQL database.
Please help..
In short this cannot be done with MySQL federated engine. However you can setup a link from the remote MSSQL server to a MySQL table using the linked server feature of the MSSQL server.
If you can set this up you can have a scheduled job populate the MySQL tables from the MSSQL server side.
I have done the above setup and it is not to difficult.
I would also investigate some ETL tool to do this as it sounds like a ETL job and not something you want to run via stored procedures.
Good Luck.

Is it possible to Connecting MYsql with sql server?

I am using an open source software which support mysql and i create application that uses asp.net 4.0 and sql server 2008....
Is it possible to Connecting MYsql with sql server ?
I want every insertion and updating should be made to both database servers as they have same schema of tables but one is mysql and other is sql server 2008 ?
kindly explain step by step if possible
hope this will help,this shows step by step connection
http://www.codeproject.com/Articles/29106/Migrate-MySQL-to-Microsoft-SQL-Server
You can use linked server in MS SQL Server.
From the documentation - A linked server allows for access to distributed, heterogeneous queries against OLE DB data sources.
Have a look at sp_addlinkedserver function.

how to copy table data from sql server 2008 to sql server 2005 db?

does anyone know how to copy data from a sql server 2008 db to an sql server 2005 db? I tried to use the sql server export wizard to no avail:(
Here is a link to a tutorial that will walk you through generating scripts for a table including data. This is good for a once off operation.
Walk through on Scripting table with data
... this is very useful when you have many table that need to be scripted, but watch for the 2GB limit.
Try this:
1.If both the servers are in same network,create the linked server and use
select * into tblename from servername.dbname.dob.tblname
2.Or you can use SSIS to transfer the data
3.Use export wizard of sql server