小编Pra*_*eek的帖子

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模式...

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

intellisense sql-server-2008

2
推荐指数
1
解决办法
820
查看次数

标签 统计

intellisense ×1

sql-server-2008 ×1