How to create database in sql server 2005. How to start with sql server 2005.
feedback
|
migrated from stackoverflow.com Mar 13 '10 at 12:55
This question came from our site for professional and enthusiast programmers.
closed as not a real question by Nick Kavadias, mh., Sam♦, splattne♦ Mar 14 '10 at 8:06
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.
|
right click on databases in object explorer. then New Databse. and if you are a beginer , you should learn more about databases at first. start with a book if you know about databases as marc_s noticed! | |||
|
feedback
|
|
you can make it by script or by wizard in SQL Server. from msdn : CREATE DATABASE database_name [ ON [ < filespec > [ ,...n ] ] [ , < filegroup > [ ,...n ] ] ] [ LOG ON { < filespec > [ ,...n ] } ] [ COLLATE collation_name ] [ FOR LOAD | FOR ATTACH ] < filespec > ::= [ PRIMARY ] ( [ NAME = logical_file_name , ] FILENAME = 'os_file_name' [ , SIZE = size ] [ , MAXSIZE = { max_size | UNLIMITED } ] [ , FILEGROWTH = growth_increment ] ) [ ,...n ] < filegroup > ::= FILEGROUP filegroup_name < filespec > [ ,...n ] | |||
|
feedback
|