SQL Server 2008智能感知问题

Pra*_*eek 2 intellisense sql-server-2008

可能重复:
丢失IntelliSense

CustomerTraining在AdventureWorks数据库中调用的SQL Server 2008中创建了模式.然后创建了一个这样的表Customer:

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
)
Run Code Online (Sandbox Code Playgroud)

然后我开始插入一些记录:

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

这一切都适合我,但在intellisense它没有显示AdventureWorks数据库下的CustomerTraining模式...

为什么不显示?有人可以帮忙......

Mar*_*ith 13

Ctrl+ Shift+ R刷新智能感知缓存.

或者,如果这不起作用(一些SSMS插件劫持此组合)通过菜单选项执行 Edit -> IntelliSense -> Refresh Local Cache

菜单截图