How would you backup and restore a big MySQL database? What
are the advantages of the approach which you have taken
over the others?
Answer Posted / anil alpati
DATABAS DUMP - mysqldump -u <user> -p <password> <dbname> > filename
DATABASE RESTORE - mysql dbname< filename -u <user> -p <password>
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are the other commands to know the structure of a table using mysql commands except explain command?
How can I change database in mysql?
What is table level locking in mysql?
What is information_schema in mysql?
What is the use of concat() in mysql?
What is a blob datatype?
What is indexing in mysql?
I want to find out all databases starting with ‘test’, I have access to?
How do you use auto increment?
How to calculate expressions with sql statements?
What are the types of database engines available in mysql?
What is database url for mysql?
What is difference between function and procedure in mysql?
Can mysql handle big data?
Write a query to display current date and time?