Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How would you backup and restore a big MySQL database? What
are the advantages of the approach which you have taken
over the others?

Answers were Sorted based on User's Feedback



How would you backup and restore a big MySQL database? What are the advantages of the approach whi..

Answer / meena bisht

Backup:- mysqldump -u <user name> -p<pwd> dbname >
filename.sql

Restore:- mysql -u <user name> -p<pwd> dbname < filename.sql

The backup and restoration of any table is faster in sql
file.

Is This Answer Correct ?    4 Yes 2 No

How would you backup and restore a big MySQL database? What are the advantages of the approach whi..

Answer / 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

How would you backup and restore a big MySQL database? What are the advantages of the approach whi..

Answer / kalai

mysqldump -uuser -ppassword databasename >filename

Is This Answer Correct ?    2 Yes 2 No

How would you backup and restore a big MySQL database? What are the advantages of the approach whi..

Answer / eric

Alternative to the solutions above, that all use the console
you can also use administration software, like
-MySQL Administrator (that's what I use, but it seems to be
replaced by the MySQL Workbench...)
-MySQL Workbench(I think this should also do the job, but I
didn't test it yet)

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More MySQL Interview Questions

Fname Lname City Pin ramesh kumar salem 365241 Query to generate a code having the firstletter of Fname,Lname & 3letter of city Last 3letter of pin,all in capital letters

3 Answers  


How show all tables in mysql query?

0 Answers  


What's the latest version of mysql?

0 Answers  


How can I see connections in mysql?

0 Answers  


What are the 'mysql' command line arguments?

0 Answers  


How to list or view all databases from the mysql server.

0 Answers  


can you tell the order of sql select statement? : Mysql dba

0 Answers  


Is mysql a free database?

0 Answers  


What is the use of pdo?

0 Answers  


In how many ways we can retrieve the data in the result set of MySQL using PHP? What is the difference between mysql_fetch_object and mysql_fetch_array ?

0 Answers  


What is mysql and mysqli?

0 Answers  


How do you insert a table?

0 Answers  


Categories