【问题标题】:SQL Server 2008 Intellisense problem [duplicate]SQL Server 2008 Intellisense 问题 [重复]
【发布时间】:2011-08-27 14:42:08
【问题描述】:

可能重复:
Lost the IntelliSense

我在 AdventureWorks 数据库中创建了名为 CustomerTraining 的 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
)

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

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

这对我来说一切正常,但在智能感知中,它没有在 AdventureWorks 数据库下显示 CustomerTraining 架构......

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

【问题讨论】:

    标签: sql-server-2008 intellisense


    【解决方案1】:

    Ctrl+Shift+Rrefresh the intellisense cache

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

    【讨论】:

      【解决方案2】:

      Ctrl+shift+R刷新缓存?

      【讨论】:

        猜你喜欢
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 2015-12-02
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        相关资源
        最近更新 更多