文件名称:网上商城数据库
文件大小:3.74MB
文件格式:ZIP
更新时间:2018-07-24 08:45:51
数据库
------------------创建数据库-------------------------- use master go exec xp_cmdshell 'mkdir E:\Angel', no_output if exists(select * from sysdatabases where name='WebShopDB')--检验数据库是否存在,如果为真,删除此数据库-- drop database WebShopDB go --创建建库WebShopDB create database WebShopDB on ( name='WebShopDB_data', filename='E:\Angel\WebShopDB_data.mdf', size=3mb, filegrowth=15% ) log on ( name= 'WebShopDB_log', filename='E:\Angel\WebShopDB_log.ldf', size=3mb, filegrowth=15% ) go