Creating a Database

To create a database you must determine the name of the database, its owner (the user who creates the database), its size, and the files and filegroups that will be used to store it.

Before creating a database, consider that:

Three types of files are used to store a database:


Important Microsoft® SQL Server™ data and transaction log files must not be placed on compressed file systems or a remote network drive, such as a shared network directory.


When a database is created, all the files that comprise the database are filled with zeros to overwrite any existing data left on the disk by previously deleted files. Although this means that the files take longer to create, this action prevents the operating system from having to fill the files with zeros when data is written to the files for the first time during normal database operations. This improves the performance of day-to-day operations.

It is recommended that you specify a maximum size to which the file is permitted to grow. This prevents the file from growing, as data is added, until disk space is exhausted. To specify a maximum size for the file, use the MAXSIZE parameter of the CREATE DATABASE statement or the Restrict filegrowth (MB) option when using a property page within SQL Server Enterprise Manager to create the database.

You can create databases using Transact-SQL, SQL Server Enterprise Manager, the Create Database Wizard, or by using SQL-DMO programmatically.

After you create a database, it is recommended that you create a backup of the master database.

To create a database

         

To create a database using the Create Database Wizard

See Also
Changing the Database Owner sp_helpfilegroup
Files and Filegroups Using Identifiers
sp_helpfile  

  


(c) 1988-98 Microsoft Corporation. All Rights Reserved.