Why are my tables not showing up in SQL Server Management Studio's intellisense?

Viewed 52610

I can't pull up my tables so I can use them in my stored procedure. Any reason why they aren't showing?

alt text

6 Answers

Right click on the 'Tables' and select 'Refresh'

For those using SQL Server Management Studio 2016 you simply need to hit 'F5' or go to 'View > Refresh' and your recently added tables should appear.

If any of the above answer is not working for you, then

Expand your database >> Security >> Users >> double click user.

Under 'Select a page' >> Membership >> Make sure db

Refresh the "Tables" in your current database. It works. Right Click on "Tables" and click on "Refresh"

Related