copy mysql database into firebird/interbase - mysql

I have a client that uses the mysql database to enter data, but he wants the data can be read with accurate program that uses the Firebird database.
Is there a solution to move data in mysql to a Firebird database?

May be something like datapump

Related

How to migrate large amount of data from MySQL database to SQL Server database with C# service

I have a MySQL database contains large amount of data.
I wanted to write a C# service program to migrate that data into SQL Server database.(Service should work fine with Insert as well as update with out performance issue).
Please help us if there is a way to accomplish this. If there is another way to achieve this is also fine. But, the MySQL client is not present in the local machine. But we could access the database from the server.
You can use the import and export functions in sqlserver, after installing a odbc mysql

Migrate MySQL to PostgreSql and share tables

I want to use PgSql in my new proyect, but I have old tables I need to use. Which is the best way to share tables between both databases? Is there any way of synchronizing several tables between databases?
You can use SQLWays that convert T/SQL stored procedure, function, trigger, database schema (DDL) and data from Microsoft SQL Server to PostgreSQL.
See this link : Migrate from MySQL to PostgreSQL
or
Full Convert 6.4
You can find more solutions at Database Administrator or ServerFault.
See this: Dba Administrator

how to connect kognitio database from mysql

I need to select some data from WX2 Database and put it in MYSQL DB.
Can any one help me on this?
Is ODBC.ini configuration will work for the mysql database to connect to WX2 database?
Thanks
To access the data in Kognitio you could use the ODBC driver to retrieve it, or for better performance use the bulk unloader utilities to export it as CSV, which you could then load into MySQL.
If you were going the other way round, pulling data FROM MySQL TO Kognitio, you could bulk unload as CSV from MySQL then bulk load into Kognitio, or you could use the External Table functionality of version 8 to access MySQL tables on demand from Kognitio via an ODBC connector.
The documentation covers off all these approaches.

How to load data from MySql to MS SQL Server database?

I have similar schema in both MySQL and MSSQL Server databases. How can I migrate just the data from MySql to an empty (no data) MSSqlServer database? MSSqlServer DB is empty with just the schema. I could not configure the MySql DB as a linked server (through ODBC) since I don't have DB Admin rights on MSSqlServer. I just have previleges to add data. I explored Sql Server Migration Assistant for MySQL, but I just want to migrate data without touching the schema at the target.
I also noticed that there is a SqlBulkCopy class which helps to programatically migrate data in .NET.
But I need to write code for each table (there are more than 100 tables and 20 GB of data).
What is the most elegant way to do it?
SSMA might be the easiest. Since you don't wanna use that, you can try using mysqldump. You can use it to essentially dump a MySQL db to SQL Server.
Link to the SSMA blog, they update these tools regularly, so check for a later version. SQL Server Migration Assistant (SSMA) Team's Blog

Find and transfrer mysql database to another computer

i'm using myaql database for my website which is in my computer.
I'm trying to transfer the database to another computer but I can't find any mysql database file...
My question is if it is possible and how can I do it? (Is there any simple way?)
MYSQL DUMP
It can be used to dump a database or a collection of databases for backup or transfer to another SQL server (not necessarily a MySQL server).