Reputation: 191
I have multiple tables which needs to be in-sync with the production database tables. Is there any way to ensure the data is synced with the production database other than manually updating the tables.
Upvotes: 0
Views: 39
Reputation: 726
Not sure what database you are using, if it is MySQL then replication is the best option to sync.
Upvotes: 1
Reputation: 3756
You can use the liquibase for this purpose. This is awesome tool for database
Liquibase is an open source database-independent library for tracking, managing and applying database schema changes. It was started in 2006 to allow easier tracking of database changes, especially in an agile software development environment.
Hopefully this will help you.
Upvotes: 1