Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 General SQL Server Forums
 New to SQL Server Programming
 How can i create databse?

Author  Topic 

sabbirta
Starting Member

1 Post

Posted - 2008-04-06 : 02:13:52
Hi,
I had downloded MS SQL express from Microsoft. But i did not find any place from where i can create databse, table etc..

please help me regarding this.

thanks
Sabbir

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2008-04-06 : 02:36:28
Start sql server management studio and expand yourServer and rightclick on databases folder and select create database. Then database creation pop up appears. Provide the location and size for data & log files and other properties. Alternatively you can create database using CREATE DATABASE T-SQL command. Look into BOL for syntax.
Once you create your db, you can browse it in management studio and on expanding you get tables folder. Right click it and select create new table and give the properties. Also you can select your created db from top menu and use CREATE TABLE t-sql command to create tables in your db.
Go to Top of Page

dineshasanka
Yak Posting Veteran

72 Posts

Posted - 2008-04-06 : 12:01:30
You can get SQL Server 2005 Express Edition with Advanced Services for free. in this you have a Management Studio express.
http://www.microsoft.com/sql/editions/express/comparison.mspx

---------------------
http://dineshasanka.spaces.live.com/
Go to Top of Page

rmiao
Master Smack Fu Yak Hacker

7266 Posts

Posted - 2008-04-06 : 15:56:34
You can download ssmse from Microsoft.
Go to Top of Page
   

- Advertisement -