I have three databases in mysql residing in three different servers. I want to combine the data from the three servers and consolidate as a single database. Is it possible to dos o in Hibernate?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You could read 1/multiple records of data at a time from 2 of the databases and check whether the records exists in the third database. If not, then write.
Depending on your memory constraints, you could try keeping a master data table in memory as a collection, adding to it from all 3 databases and the writing it once the table is done