2012-10-04 47 views
5

2012年10月4日:使SQL Server 2008 Management Studio的Intellisense忽略大小写吗?

的SQL Server 2008 Management Studio中有智能感知,这是非常有帮助的,但它是区分大小写的。

例如,我有3个表:

  • Gy_Customer_Email
  • Gy_Customer_Para
  • gy_customertemp

这里的智能感知的行为:

select * from gy_customer  -- My input 
       gy_customertemp -- Intellisense suggestion 

select * from Gy_Customer  -- My input 
       Gy_Customer_Email -- Intellisense suggestion 
       Gy_Customer_Para -- Intellisense suggestion 

我想要Intellisense显示所有3个选项,而不管大小写。我怎样才能做到这一点?

2012-10-08:

感谢阿什利·罗斯!

根据您的参考点,我已经为SQL Server Management Studio安装了Service Pack 1,但问题仍未解决。

接下来应该做什么?在

enter image description here

我的SQL Server Management Studio中的版本

enter image description here

+1

嗯..什么?... –

+0

非常感谢。我的英文程度不高。这是我第一次用英文搜寻 – dream

+1

不客气。当你在StackOverflow上提出一个问题时,只要记住接受并且赞成你所满意的答案(如果有的话)。 :) –

回答

4

此问题已报告至少两次:

enter image description here

我的SQL Server Management Studio中的选项Microsoft Connect:

这两个问题被关闭,问题显然已经固定在SQL Server 2008 R2 SP1,并在SQL Server 2012的

你应该能够安装更新的SQL Server Management Studio在您的开发PC上解决您遇到的问题,而无需升级数据库服务器。

+0

谢谢! 我已经根据您的参考点为SQL Management Studio安装了Service Pack 1,但问题仍然没有解决。 接下来我应该做什么? 更多信息在我原来的问题 – dream

+0

微软的[故障排除智能感知文章](http://msdn.microsoft.com/en-us/library/ms173434.aspx)说,Intellisense只适用于SQL Server 2008或更高版本,所以也许你需要在服务器上安装Service Pack。 –

+0

我的数据库服务器是SQL Server 2008 R2(版本:10.50.1600.1)。现在SQL Management Studio的版本是10.50.2500.0的Client。 Intellisense正在工作。我想intellisense不区分大小写。 – dream

相关问题