SQL statements that must be made (i) Create a database and delete a database _mssql

Source: Internet
Author: User
Tags create database

1. Create a database

Create database name on
primary
{Name
  = ' name ',
  filename = ' c:\xx\ name. mdf ',
  size = 10MB,         --Initial size of database
  filegrowth =1MB-     -If the initial size is not enough, 1mb per increment.
  maxsize = 20MB      --The space limit of the database, fill unlimited for unlimited
}
Log on
{
  name= ' name _log ',
  filename = "c:\xx\ name _log.ldf"
  size = 5MB,
  filegrowth = 10%,    There are two ways to grow, one is to grow according to fixed size, one is to increase by percentage!
  maxsize = 10mb
}

2. Delete Database

can only use drop
Drop database name

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.