5

Possible Duplicate:
Lost the IntelliSense

I have created schema in SQL Server 2008 called CustomerTraining in the AdventureWorks database. Then created a table called Customer like this:

create schema CustomerTraining

create table CustomerTraining.Customer
(
CustomerID int not null,
CustomerName nvarchar(25) not null,
TerritoryID int  null,
AccountNumber nvarchar(20) not null,
CustomerType nvarchar(20) not null,
CustomerAddress nvarchar(20) not null,
CustomerPhone nvarchar(20)  null,
CustomerStateCode nchar(2) null
)

then I began to insert some record :

insert into AdventureWorks.CustomerTraining.Customer
values(1,'Prateek Singh','1','A4B8934561','Internal','Anna Nagar','7418773929','TN')

It all works fine for me but in the intellisense its not showing CustomerTraining schema under AdventureWorks database...

Why its not showing ? Can someone help......

Community
  • 1
  • 1
Prateek
  • 59
  • 1

2 Answers2

13

Press Ctrl+Shift+R to refresh the intellisense cache.

Or if that doesn't work (some SSMS addins hijack this combination) do it through the menu options Edit -> IntelliSense -> Refresh Local Cache

Menu screenshot

Martin Smith
  • 438,706
  • 87
  • 741
  • 845
4

Ctrl+shift+R to refresh the cache?

gbn
  • 422,506
  • 82
  • 585
  • 676