IntelliSense is not working in SQL Server Management Studio

后端 未结 15 1232
醉酒成梦
醉酒成梦 2021-02-02 09:33

We use SQL Server Management Studio 2008 R2. IntelliSense works with SA account perfectly. But it is not working with Windows Authentication user. The user has access master db

相关标签:
15条回答
  • 2021-02-02 10:32

    You can try solution from these questions1 or questions2 and questions3.
    Or please try these steps as below:

    • Enable IntelliSense:
      • For all query windows, please go to Tools >> Options >> Text Editor >> Transact-SQL >> IntelliSense, and select Enable IntelliSense.
      • For each opening query window, please go to Query >> Intellisense Enabled.
    • Enable statement completion: please go to Tools >> Options >> Text Editor >> Transact-SQL >> General, and check on Auto list members and Parameter information boxes.
    • Refresh IntelliSense local cache: please go to >> Edit >> IntelliSense >>Refresh Local Cache or use the CTRL+Shift+R keyboard shortcut to refresh.
    • Wait a minute or two for the Refresh to finish before trying again.
    0 讨论(0)
  • 2021-02-02 10:33

    My schemes were too big. I had to do this:

    Tools >> Options >> Text Editor >> Transact-SQL >> Intellisence

    Maximum script size: Unlimited

    0 讨论(0)
  • 2021-02-02 10:35

    It could also depends on your destination server.

    For instance for server 2005, intellisense will not work. Here is a command to check this :

    SELECT SERVERPROPERTY('ProductVersion');
    

    If version begin with 8 or 9 it will not work.

    More information for : sql server intellisense trouble here

    A workaround could be to use a sql server plugin as Autocomplete version express

    0 讨论(0)
提交回复
热议问题