This is a bit of SQL I use to backup Microsoft SQL Server Express Databses (the free version from Microsoft that doesn’t have all the functioanlity of the full M$ SQL Server). There’s a bit more to it than the …
Tag Archives: Backup
Script to backup MS SQL Server Express Databases
Posted by dave on March 16, 2010
No comments
Simple Script to backup MySQL Databases
Posted by dave on March 16, 2010
No comments
This is a simple script I use to backup MySQL databases. Save the following as backup.bat (or similar) and they you can set a scheduled task to run this daily. “C:\Program Files\MySQL\MySQL Server 5.1\bin\mysqldump.exe” -uUSERNAME -pPASSWORD MYSQLDBNAME > “c:\folder\mysqldbname\mysqldbname_%time:~0,2%%time:~3,2%%time:~6,2%_%date:~-10,2%%date:~-7,2%%date:~-4,4%.sql” The …
Hyper-V VM Backup Script Batch File
Posted by dave on March 12, 2010
2 comments