0

I took a back up of my production server and created new server few weeks before. I want to move some transactional data from my production to the backup server.what is the best way to do this?.

4
  • Possible duplicate of MySQL - Move everything to a new server Commented Jan 17, 2018 at 8:29
  • i don't wan't to move everything i just want to move some transactional data.this contains many tables. using postgres/oracle i was having an option to connect to other db via db link. Commented Jan 17, 2018 at 8:35
  • How should your application work if some data is here and some is there? Are you looking for a master/slave setup? Commented Jan 17, 2018 at 8:50
  • No. One of client moved to new environment so they are still having some data in my old production environment . Commented Jan 17, 2018 at 9:22

1 Answer 1

0

Your question is not very clear, it's hard to understand what you want to move and where (you are talking about "old production", "new production", and "backup" servers, I don't understand which is which).

Anyway, there is no db link in MySQL. However you could have a look at the FEDERATED storage engine which will allow you to connect to a table on old server from the new server. Then run the insert/update/delete queries on the new server to move the data.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.