简体   繁体   English

SQL Server 2008 Management Studio Intellisense无法正常工作

[英]SQL Server 2008 Management Studio Intellisense not working

SQL Server 2008 Management Studio Intellisense is not working. SQL Server 2008 Management Studio Intellisense无法正常工作。

I have already enabled Intellisense. 我已经启用了Intellisense。
I have already cleared the cache. 我已经清除了缓存。

Solution by OP. 由OP解决。

There was one fix I found after fumbling through the different users, and it was a permissions issue: Make sure the login users has access to the xp_instance_regread stored procedure in the Master database. 在浏览不同的用户后,我发现了一个修复程序,这是一个权限问题:确保登录用户可以访问Master数据库中的xp_instance_regread存储过程。 The command to give access is as follows: 授予访问权限的命令如下:

USE master 
GO 
GRANT EXECUTE ON xp_instance_regread TO YourLoggedInUser;

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 IntelliSense 在 SQL Server Management Studio 中不工作 - IntelliSense is not working in SQL Server Management Studio SQL Server Management Studio 2008 R2开发人员版intellisense无法正常工作 - SQL Server Management Studio 2008 R2 Developer Edition intellisense not working SQL Server 2012 Management Studio Intellisense无法通过VPN工作 - SQL Server 2012 Management Studio Intellisense not working over VPN SQL Server管理Studio 2008 - sql server management studio 2008 为什么Intellisense在SQL Server Management Studio 2008 R2中不起作用? - Why Intellisense doesn't work in SQL Server Management Studio 2008 R2? 是否有任何技巧允许在早期版本的SQL Server中使用Management Studio(版本2008)IntelliSense功能? - Is there any trick that allows to use Management Studio's (ver. 2008) IntelliSense feature with earlier versions of SQL Server? SQL Server 2008管理工作室intellisense自动刷新(不通过菜单或键盘快捷键手动) - SQL Server 2008 management studio intellisense auto refresh (not manually through menu or Keyboard shortcut) SQL Server Management Studio中JOIN的Intellisense - Intellisense for JOINs in SQL Server Management Studio SQL Server 2008 R2 智能感知不起作用 - SQL Server 2008 R2 intellisense not working SQL Server 2008 RC2 Intellisense无法正常工作 - SQL Server 2008 RC2 Intellisense not working
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM