Sam Schutte
Sam Schutte

Reputation: 6736

SQL Server Mgt Studio not showing table?

I have a table in SQL Server 2000 Standard Edition called "dbo.T668" (don't blame me for the naming convention).

I'm working on the server using SQL Server Management Studio 2005, and for some strange reason, I can't see the table at all in the list of tables. I see all the other tables, but not this one.

If I open up a query editor and type "select * from dbo.T668", it returns all the records, so I have permission to get to the table and select from it - is there a setting that allows you to get to the table but not see it in SQL Manager? Or is this an incompatibility between SQL 2000 and SQL 2005?

Upvotes: 0

Views: 2620

Answers (3)

Dano
Dano

Reputation: 667

If you just created it recently make sure you hit the refresh button at the top, doesn't always seem to be in sync for me anyways.

Upvotes: 2

Sam Schutte
Sam Schutte

Reputation: 6736

DOH!

Did a sp_help on it, and you're, right, it's a view.....there's like 2000 tables in this database, so I guess I just missed it.

Argh.

Upvotes: 0

Otávio Décio
Otávio Décio

Reputation: 74250

Are you sure it is a table and not a view?

Upvotes: 2

Related Questions