Creating and modifying databases
You can use either Transact-SQL DDL statements or SQL Server Management Studio to create and modify databases. In the following subsections, we will discuss these options.
Create, modify, and drop databases with T-SQL DDL statements
In this section, we will cover Transact-SQL DDL statements that are used to create, alter and modify SQL Server databases.
Creating a database with T-SQL DDL statements
We use the CREATE DATABASE
statement to create a new database on SQL Server. The general syntax for the CREATE DATABASE
command is as follows:
CREATE DATABASE database_name [CONTAINMENT = {NONE | PARTIAL}] [ON [PRIMARY] [<filespec> [,...n] [,<filegroup> [,...n]] [LOG ON <filespec> [,...n]]] [COLLATE collation_name] [WITH ...
Get SQL Server 2014 Development Essentials now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.