This article describes how you can use oSQL to backup and restore your ENT Server databases.
You can use the osql command-line tool to access, query, or run scripts against, your SQL Server or MSDE database. For example, to backup your ENT Server databases you could run the following from the command line:
osql -S narcisus -E -Q " BACKUP DATABASE mf_enterprise TO DISK = 'C:\Temp\ent_database.bak' "
Similary, to restore the above backup you could run the following from the command line:
osql -S narcisus -E -Q " RESTORE DATABASE mf_enterprise FROM DISK = 'C:\Temp\ent_database.bak' "
You can find further information on the RESTORE DATABASE command for MS SQL Server, including various additional parameters that you could use, on the Microsoft Website.