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.
| 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.thanksSabbir |
|
|
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. |
 |
|
|
dineshasanka
Yak Posting Veteran
72 Posts |
|
|
rmiao
Master Smack Fu Yak Hacker
7266 Posts |
Posted - 2008-04-06 : 15:56:34
|
| You can download ssmse from Microsoft. |
 |
|
|
|
|
|