I have two database ms1 and ms2 with same fields and same tables. i want to merge both data from ms1 to ms2. as i have same primary keys.
Anybody have idea?
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.
Follow steps stated by @Sevak.
Export db2 table with structure and import it in db1 in a temporary table with same schema.
Now run query:
Delete temporary_table if everything is ok.