I am looking out for a solution to migrate data from Progressdb to MySQL..Please let me know if there are any solutions for the same.Thank you.
If this is a one time thing then the answer above is probably best (dump to ascii and import, or link the tables).
If it is more of a replication oriented problem then you might find http://www.bravepoint.com/products-pro2-replication-suite.shtml to be helpful.
Some possibilities
Export to flat file and import to MySQL
link tables from both databases in Microsoft Access via ODBC, and then xfer data using SQL
Related
i would like to know if there is any kind of tool to move data from one database to another. In my case i'm trying to move data from hsqldb to mysql.
I've already tried with mysql workbench, but it doesn't support hsqldb.
I think the worst case would be to export data into sql-files, modify these and try to import them in mysql.
Have you tried this.
https://confluence.atlassian.com/conf56/migrating-from-hsqldb-to-mysql-658737210.html
Hope this helps.
There are a few cross-platform tools to move data between different database. These include Flyway. See this page for a list of useful utilities http://hsqldb.org/web/hsqlUsing.html
My solution was SQL-Workbench, which can be used to copy/sync data between databases. You can execute sql-Files in the cli which makes it easy to run remote.
To copy/move/snyc/whatever your data, just use WbCopy.
example:
WbCopy -sourceConnection='username=SA,url=jdbc:hsqldb:/db/myDb'
-targetConnection='username=root,url=jdbc:mysql://someIp:3306/myDB'
-targetTable=SOMETABLE -sourceTable=SOMETABLE -ignoreIdentityColumns=false
-mode=insert,update -keyColumns=ID -deleteTarget=false -continueOnError=false;
I have to migrate my database from MySql to Derby. However, I am facing a problem, that it is not possible just to create sql dump and import in JavaDB. Is there an easy way, a tool or something that I can use? or should I do everything by hand?
Danke
One good way, is to use DdlUtils.
with this, you can export a database schema from one database and create it in another.
This is the MySQL page.
There are two different database servers in different platforms; MySql and Firebird.
I need to get db tables from Firebird server (synchronously or not synchronously) to MySql server.
Timing is not that important.
How do I achieve to get, for example; simply a specific database table from Firebird server to Mysql server?
İt will be very helpful if any ideas come, thank you..
So essentially you would need to develop some sort of process that will extract then transform and load the data from FireBird into MySQL. The problem is that both firebird and MySQL does not have real ETL tools included in them by default. MSSQL has for example SSIS. Since you cant access FireBird directly from MySQL code you will need some external tool to do the job.
Thus you will either have to code this tool yourself or use a open source tool.
There are several ETL tools that are open source and for free that you might want to investigate such as Pentaho, CloverETL see this link for more information.
You told you already found a solution to import CSV into MySQL. So the missing piece is Firebird CSV export
Well, those three words entered into Google give you immediate top result as the free FBExport tool. See http://www.firebirdfaq.org/fbexport.php
I want to transfer data between Mysql and SQL Server databases, but both are hosted online.
I tried to do this thing using odbc, but it did not work. What is the best solution for this task? ODBC/web services/some other method? Please help me to solve this problem.
You could take a look at the Microsoft Sync Framework, it's very flexible and can deal with different databases.
http://msdn.microsoft.com/en-us/sync/default
There are some database syncing tools already existed. One great tool I can recommend is the Navicat Premium. This tool supports different servers.
Create your own data sync app. It's not so hard to create.
We have been using MongoDB as our main datastore for a little while but I've been finding it difficult to please our business users with it's lack of relations.
What I'm hoping to do is dump data from Mongo to MySQL to allow these heavy MySQL users the ability to query in a format they are used to.
Does anyone know an elegant way to do this?
I'm hoping to avoid some heavy scripting to get there...
Read all the data ! Write all the data !
Use your language specific driver for MongoDb and Mysql to fetch all the data from MongoDb and insert into Mysql as per your table schemas. You will need some coding for sure.
Update: You can give a try to this tool :
http://grahamis.com/blog/2010/06/10/squealer-intro/
https://github.com/delitescere/squealer
Strange question. Do you except arbitrary documents would fit into a RDBMS schema?
You must be dreaming. Try the CSV export...everything else is up to you and your coding skills.
The answer is Kettle.
Thanks to Adam our engineer he found the solution.
http://kettle.pentaho.com/
They have added a tool to connect to Mongo.
You can then migrate the data to MySQL.