MS SQL Server Create Database

The MS SQL Server Create Database Tool allows users to visually create databases for MS SQL Server.

Options on the tool include the following:

Database Name (the name of the database to be created)
Character Set (the character set for the database)
Collation (the collation for the database)

Listed below is an example create database SQL statement generated by the Create Database tool for MS SQL Server

CREATE DATABASE testdatabase
ON
( NAME = testdatabase_dat,
SIZE = 4MB,
MAXSIZE = 10MB,
FILEGROWTH = 2MB )
LOG ON
( NAME = testdatabase_log,
SIZE = 2MB,
MAXSIZE = 5MB,
FILEGROWTH = 1MB )

MS SQL Server Create Database