Automatically Backup MySQL Databases on Windows

MySQL Command for backup all databases: mysqldump -uUSERNAME -pPASSWORD –all-databases > “D:/File_NAME_%date:~-4,4%-%date:~-10,2%-%date:~-7,2%-%time:~0,2%_%time:~3,2%_%time:~6,2%.sql” Example: Consider MySQL username = root and password = 123456 mysqldump -uroot -p123456 –all-databases > “D:/mysql_backup_%date:~-4,4%-%date:~-10,2%-%date:~-7,2%-%time:~0,2%_%time:~3,2%_%time:~6,2%.sql” The result will be a file name (mysql_backup_2017-10-21-20_29_54.sql) containing all databases. MySQL Command for one database databases: mysqldump -uroot -p123456 –databases mydatabasename > “D:/mysql_backup_%date:~-4,4%-%date:~-10,2%-%date:~-7,2%-%time:~0,2%_%time:~3,2%_%time:~6,2%.sql” We replaced –all-databases…

Rooting Samsung Galaxy S5 SM-G900H

Very thanks for https://desktop.firmware.mobi/ that helps me to Root my Android Galaxy S5 during 5 minutes, before trying that site, I tried several ways to root my android but I failed. Once you visited the website, it asks to submit your device model, and the it provides you all required files to root including clean…