InterviewSolution
Saved Bookmarks
| 1. |
Please State How Can You Take A Backup Of The Whole Database In Mysql ? |
|
Answer» You can USE the COMMAND line utility to take a backup of all the MYSQL table or a specific mysql table easily with the following: mysqldump –-user [user_name] –-PASSWORD=[password] [database_name] > [dump_file_name] You can use the command line utility to take a backup of all the mysql table or a specific mysql table easily with the following: mysqldump –-user [user_name] –-password=[password] [database_name] > [dump_file_name] |
|