Using the following:
CREATE DATABASE hotel999
ON
( NAME = 'Sales_dat',
FILENAME = 'd:\mssql7\data\hotel999_dat.mdf',
SIZE = 1,
FILEGROWTH = 10% )
LOG ON
( NAME = 'Sales_log',
FILENAME = 'd:\mssql7\data\hotel999_log.ldf',
SIZE = 1,
FILEGROWTH = 10% )
creates a database on MS SQL server starting at 1Mb with unrestricted growth (to cap the file add
MAXSIZE= [I]nn[/I]MB
after SIZE
with a file increase of 10% per..
Hope this helps someone else.