Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9222185
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T03:46:11+00:00 2026-06-18T03:46:11+00:00

I need to restore a dumped database, but without discarding existing rows in tables.

  • 0

I need to restore a dumped database, but without discarding existing rows in tables.

To dump I use:

mysqldump -u root --password --databases mydatabase > C:\mydatabase.sql

To restore I do not use the mysql command, since it will discard all existing rows, but instead mysqlimport should do the trick, obviously. But how? Running:

mysqlimport -u root -p mydatabase c:\mydatabase.sql

says “table mydatabase.mydatabase does not exist”. Why does it look for tables? How to restore dump with entire database without discarding existing rows in existing tables? I could dump single tables if mysqlimport wants it.

What to do?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T03:46:12+00:00Added an answer on June 18, 2026 at 3:46 am

    If you are concerned with stomping over existing rows, you need to mysqldump it as follows:

    MYSQLDUMP_OPTIONS="--no-create-info --skip-extended-insert"
    mysqldump -uroot --ppassword ${MYSQLDUMP_OPTIONS} --databases mydatabase > C:\mydatabase.sql
    

    This will do the following:

    • remove CREATE TABLE statements and use only INSERTs.
    • It will INSERT exactly one row at a time. This helps mitigate rows with duplicate keys

    With the mysqldump performed in this manner, now you can import like this

    mysql -uroot -p --force -Dtargetdb < c:\mydatabase.sql
    

    Give it a Try !!!

    WARNING : Dumping with --skip-extended-insert will make the mysqldump really big, but at least you can control each duplicate done one by one. This will also increase the length of time the reload of the mysqldump is done.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to import (restore) a collection generated with mongodump into an existing database
I need to restore a backup from a production database and then automatically reapply
Ok, so I'm in need to restore a table and I do: mysqldump --opt
I need to perform a database restore from my application. Before doing this, I
Due to a server crash I need to restore some rows, created within a
I have a database that I constantly need to restore. Every time I do
I need to modify a text file at runtime but restore its original state
I have a database hosted however the hosting expired. Need to restore my .bak
I'm new to cron jobs and I need to restore a database (mysql) every
I was given a MySQL database file that I need to restore as a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.