Reputation: 729
I created new tables Faculty
and Specialty
as described in the link below, but I do not see them under databases in the Object Explorer. Also, if I click on 'edit', I do not see 'Intellisense' anywhere. What is going on?
Upvotes: 4
Views: 9934
Reputation: 51
I updated the view that management studio uses to display table information.
Not sure why this happened, server might need more memory / cpu..
Upvotes: 0
Reputation: 172628
Simply go your database and write this query:
USE DBName --Change the database name in which you have created your table
GO
IF (EXISTS (SELECT *
FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_SCHEMA = 'TheSchema'
AND TABLE_NAME = 'Faculty'))
BEGIN
print 'table exists'
END
Check if your table exists in the database. If the table is created then it will be listed here else there might be some problem while creation.
And if the above query shows the table which you are looking for in the database then I would recommend to restart your management studio and check again.
Upvotes: 1