About 25,000 results
Open links in new tab
  1. How do I restore a dump file from mysqldump? - Stack Overflow

    697 I was given a MySQL database file that I need to restore as a database on my Windows Server 2008 machine. I tried using MySQL Administrator, but I got the following error: The selected file was …

  2. Restore MYSQL Dump File with Command Line - Stack Overflow

    Mar 25, 2011 · You can restore the dump using phpmyadmin as well but you have to sure that it must be .sql file. The second way is if you are linux user than use the command line to restore the dump file.

  3. mysql - How to restore SQL file generated by MySQLDump using …

    Jun 11, 2010 · I have a SQL file generated by MySQLDump. How can I restore it via command prompt?

  4. mysql restore to different database - Stack Overflow

    Jan 26, 2012 · Expressing --databases switch in mysql command solve my issue in creating separate dump for each database and restore them one by one in another server. Thanks!

  5. mysql - mysqldump backup and restore to remote server - Stack …

    How can i use mysqldump to backup and restore database to a remote server? Both have root access. I am using putty to perform this. So far I tried the following: mysqldump -u root -p >z*x311...

  6. how to restore mysql database from a .sql file - Stack Overflow

    Oct 18, 2020 · I have a testDBbackup.sql file. I dropped the mysql database a while back and I was wondering how I could restore it from my backup file. I am using a Mac. I was hoping somebody …

  7. Export MySQL dump from command line - Stack Overflow

    mydumper mydumper is a command line utility created by the community (link to GitHub). Unlike mysqlsh it is easier to use, because it is a highly specialized tool. The dump created by the …

  8. Export and Import all MySQL databases at once - Stack Overflow

    I want to keep a backup of all my MySQL databases. I have more than 100 MySQL databases. I want to export all of them at the same time and again import all of them into my MySQL server at once. How...

  9. mysql - Enable binary mode while restoring a Database from an SQL …

    Jun 18, 2013 · I meet the same problem in windows restoring a dump file. My dump file was created with windows powershell and mysqldump like: mysqldump db > dump.sql The problem comes from the …

  10. Can I restore a single table from a full mysql mysqldump file?

    I have a mysqldump backup of my mysql database consisting of all of our tables which is about 440 megs. I want to restore the contents of just one of the tables from the mysqldump. Is this possible?