In this post we will see how to make a batch file to take backup of MySQL database (single database) to a particular folder on the same computer. As you may already know, there are various variants of mysqldump command. But for this exercise we will use this command:
Simple Batch File to backup MySQL Database:
Read more �
mysqldump --routines -u<username> -p<password> <database name> > <output sql file name>
Simple Batch File to backup MySQL Database:
0 comments:
Post a Comment