Created
November 7, 2017 16:40
-
-
Save oteroweb/1b20e0d50a130913c9ded86f0acf0b41 to your computer and use it in GitHub Desktop.
mysql bigdumper script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
A common use of mysqldump is for making a backup of an entire database: | |
shell> mysqldump db_name > backup-file.sql | |
You can load the dump file back into the server like this: | |
UNIX | |
shell> mysql db_name < backup-file.sql | |
The same in Windows command prompt: | |
mysql -p -u[user] [database] < backup-file.sql | |
PowerShell | |
C:\> cmd.exe /c "mysql -u root -p db_name < backup-file.sql" | |
MySQL command line | |
mysql> use db_name; | |
mysql> source backup-file.sql; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment