Sabtu, 01 Oktober 2011

Tutorial SQL server 

Creating a New Database

The following steps demonstrate how to create a database in SQL Server using SQL Server Management Studio.
  1. Right click on the "Databases" icon and select "New Database...":
    Creating a new database in SQL Server - step 1
  2. Name your database and click "OK":
    Creating a new database in SQL Server - step 2

Your New Database

You will now notice your new database appears under the "Databases" section of SQL Server Management Studio.
Your new database is based on the "Model" database. The Model database is a system database which is used as a template whenever a new database is created. If you use the left pane to navigate to your database and expand the tree, you will notice that your database already contains a number of objects. For example, it already contains system functions, system views, system stored procedures, and (hidden) system tables. These are system objects which provide information about the database.
Creating a new database in SQL Server - step 3

Other Options

We have just created a database using the default options. When we created the database, a "Data File" and a "Transaction Log" were created. They were created in the default location for our server.
If we'd wanted to, we could have specified a different location for these files. We also could have changed specifications on whether to allow the file to grow automatically (as it stores more and more data), and if so, how that growth should be managed. We could have done that at step 2. But all is not lost. We can still do it now that we've created the database. We can do it via the Properties dialog box.
To view or change the database properties, simply right click on the database and select "Properties":
Creating a new database in SQL Server - step 4
The Properties dialog contains a large number of options for changing the configuration of your database. For now, we can leave everything at its default setting.
Creating a new database in SQL Server - step 5

 



 Sumber : http://www.quackit.com/sql_server/sql_server_2008/tutorial/create_a_database.cfm

Tidak ada komentar:

Posting Komentar