RDizzl3
RDizzl3

Reputation: 846

Tables in Microsoft SQL Server 2008

I am very new to Microsoft SQL Server 2008 and SQL in general. I have a very trivial question. I just created my first database and in it I created a table called programmer. In the object explorer under my database I can see my table programmer. I tried to create a second table called customer just to get the hang of SQL but the customer table does not show up under my database name only the table programmer is displayed.

My question is where is the second table in the object explorer?

Thank you in advance.

Upvotes: 0

Views: 72

Answers (2)

Darren S
Darren S

Reputation: 940

You might need to refresh the Object Explorer tree.

Either:

  • Collapse and expand the Tables folder, or
  • Right click the Tables folder and click Refresh

Upvotes: 5

Steve Wellens
Steve Wellens

Reputation: 20620

You might have created the table in a different database.

Upvotes: 0

Related Questions