34,837
社区成员




create proc proc_createdatabase
AS
create database a_information
on
(name=a_information,
filename='d:\information.mdf',
size=10mb,
maxsize=50mb,
filegrowth=5mb)
log on
(name='information_log',
filename='d:\information.ldf',
size=10mb,
maxsize=50mb,
filegrowth=5mb)