Collections:
"CREATE DATABASE" Statement - Creating New Databases in SQL Server
How to create new databases with "CREATE DATABASE" statements in SQL Server?
✍: FYIcenter.com
This is the first tutorial of a quick lesson on creating database objects with Transact-SQL statements. This lesson shows you how to create a database, create a table in the database, and then access and change the data in the table. Because this lesson is an introduction to using Transact-SQL, it does not use or describe the many options that are available for these statements. This tutorial assumes that you are running SQL Server Management Studio Express.
Like many Transact-SQL statements, the CREATE DATABASE statement has a required parameter: the name of the database. CREATE DATABASE also has many optional parameters, such as the disk location where you want to put the database files. When you execute CREATE DATABASE without the optional parameters, SQL Server uses default values for many of these parameters. This tutorial uses very few of the optional syntax parameters.
To create a database - In a Query Editor window, type but do not execute the following code:
CREATE DATABASE TestData GO
Use the pointer to select the words CREATE DATABASE, and then press F1. The CREATE DATABASE topic in SQL Server 2005 Books Online should open. You can use this technique to find the complete syntax for CREATE DATABASE and for the other statements that are used in this tutorial.
In Query Editor, press F5 to execute the statement and create a database named TestData. When you create a database, SQL Server makes a copy of the model database, and renames the copy to the database name. This operation should only take several seconds, unless you specify a large initial size of the database as an optional parameter.
⇒ "CREATE TABLE" Statement - Creating New Tables in SQL Server
⇐ Getting Started with Transact-SQL Statements in SQL Server
⇑ Getting Started with Transact-SQL Statements in SQL Server
2016-12-02, 2530🔥, 0💬
Popular Posts:
How To Create a Stored Program Unit in Oracle? If you want to create a stored program unit, you can ...
How To Look at the Current SQL*Plus System Settings in Oracle? If you want to see the current values...
How To Start MySQL Server in MySQL? If you want to start the MySQL server, you can run the "mysqld" ...
How To Connect ASP Pages to Oracle Servers in Oracle? If you are running Windows IIS Web server and ...
What Are Bitwise Operations in SQL Server Transact-SQL? Bitwise operations are binary operations per...