Start a cmd tool.
Start OSQL with:

OSQL -S <your msde or sqlserver server name>  -E


Create the database
1> create database gtpnetdemo
2> go


To Restore the database (you will need to do this before running the sample):
1> restore database gtpnetdemo from disk ='c:\temp\gtpnetdemo.bck' with replace
2> go

with replace is only needed if you already have a db with this name.



To back up the database:
1> backup database gtpnetdemo to disk='c:\temp\gtpnetdemo.bck'
2> go
