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
 SQL Server 2005 Forums
 Transact-SQL (2005)
 where does the table i created goes in sql2005?

Author  Topic 

jdub_92
Starting Member

13 Posts

Posted - 2008-10-18 : 01:19:19
I'm a newbie with sql programming, and i used sql2005. I tried to creat a table but i did not see the table i created,.

Where does the table goes i just used the syntax below in 2005? I look at the master but nothing i can see,

CREATE TABLE vendors (
vendorid CHAR(5),
companyname VARCHAR(30),
repfname VARCHAR(20),
replname VARCHAR(20),
referredby CHAR(5)
);


thanks,

jwill

rammohan
Posting Yak Master

212 Posts

Posted - 2008-10-18 : 01:34:05
it will goes into the database u have selected in the editor. go 4 that database and expand it,underthat u can find a folder tables. expand the tables folder , there u can find u r table

One can never consent to creep,when one feels an impulse to soar
RAMMOHAN

Go to Top of Page

jdub_92
Starting Member

13 Posts

Posted - 2008-10-18 : 02:03:30
there it is , i just need to refresh,.

jwill
Go to Top of Page
   

- Advertisement -