or,
during my DOS days, I'd probably save the following in MYSCRIPTS.BAT
isql -d myDB -U sa -P password -Q "BACKUP DATABASE myDB TO DISK='G:\Backup\myDB.BAK' >> C:\myDB_log.log
date /t >> C:\myDB_log.log
time /t >> C:\myDB_log.log
![Stick out tongue [:P]](/cs/emoticons/emotion-4.gif)
or if you have multiple lengthy scripts, you can execute each query file (*.SQL) in batches. Check BOL for samples.