How to sync Sqlite Database with Remote Database?

Data Migration: How to keep two database models in sync?

  • I have an Oracle database I need to keep the models in sync (the same) with a postgresql database, How do I do this? Also the table names are different between the two servers.

  • Answer:

    Ideally, you write the scheme using a common subset of SQL DDL. Then you use that scheme files to load the databases. This way you schema is always uniform against the common subset. In your case, you can only do this if you recreate the database with common table names. If you don't want to recreate the names you can run a script to find and replace the table names (sed) before reloading it into the other database. In this case, what you refer to as model is a common schema. However, if you are talking about keeping "content" synchronize and not the actual database schema. It is possible to export the content periodically as a common subset of SQL DML then load into the other database periodically (dump-flush-load). Not elegant but possible. Another possibility is to use a commercial database synchronization tool (ie. Oracle Golden Gate, SymmetricDS, the IBM equivalent).

William Emmanuel Yu at Quora Visit the source

Was this solution helpful to you?

Other answers

Maybe you should try finding answer here: https://wiki.postgresql.org/wiki/Converting_from_other_Databases_to_PostgreSQL It is an excellent source for database conversion from almost any database to PostgeSQL. You can find utilities, tools, scripts, etc.

Victor Horn

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.