This may be a dumb question. But I just received permissions to read/write to this DB. I see the tables of the DB, except for one. I can select from it, But I cannot see it in the Object Explorer. I restarted my computer, refreshed the object explorer and everything. Is there a restriction on viewing this table?
+1
A:
Could it be a synonym, or a view? Check under the synonyms node and the views node. Also check the schema... if you are just saying SELECT * FROM table, try with SELECT * FROM dbo.table. It may be under a different schema.
Aaron Bertrand
2010-01-28 17:15:43
+1
A:
The query
SELECT type, type_desc FROM sys.objects WHERE name = 'my_table_name'
should tell you what type of object your table really is.
devio
2010-01-28 17:23:31
thanks i used that and realized that the table didn't exist in the database I was looking at.. someone should have told me the difference between test and production...
Marlon
2010-01-28 20:42:48