I would like to do a Dump in my MySQL database, but I need this Dump to create the .sql file with the date the Dump was done, so that I have saved all previous backups by date.
I would like to do a Dump in my MySQL database, but I need this Dump to create the .sql file with the date the Dump was done, so that I have saved all previous backups by date.
Just create a shell script to back up for you.
Basically to get data just use: /bin/date +%d-%m-%Y
Remaining just dump and save the file.