L ike many small time YouTube creators, I also got an email in January 2018 about changes to the YouTube Partner Program (YPP) regarding changes new threshold of 4,000 hours of watchtime within the past 12 months and 1,000 subscribers. The revenue wasn't much but it was good to get some revenue from the little effort made in creating some videos. Unfortunately, my channel did not meet the subscriber threshold though watch time was alright. So, as per the new rules, monetization was set to be disabled. Read more »
Batch File Example Code To Backup MySQL Database To A Particular Folder, Append Date and Time, Delete Backups Older Than X Days
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:

Comments
Post a Comment