Introduction - If you have any usage issues, please Google them yourself
1, Description: Create a database CREATE DATABASE database-name 2, Description: delete the database drop database dbname 3, Description: The backup sql server--- create a backup data device USE master EXEC sp_addumpdevice ' disk' , ' testBack' , ' c: \ mssql7backup \ MyNwind_1.dat ' --- start the backup BACKUP DATABASE pubs TO testBack 4, Description: Create a new table create table tabname (col1 type1 [not null] [primary key], col2 type2 [not null ],..)