简体   繁体   中英

SQL Server 2008 Management Studio Intellisense not working

SQL Server 2008 Management Studio Intellisense is not working.

I have already enabled Intellisense.
I have already cleared the cache.

Solution by 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. The command to give access is as follows:

USE master 
GO 
GRANT EXECUTE ON xp_instance_regread TO YourLoggedInUser;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM