Tag Archives: SQL Server Management Studio

How to Get SSMS to Recognize an Existing Object (Refreshing Lists in SSMS)

Ever get this message in SQL Server Management Studio (SSMS) when you’re certain that the object exists? Then it proves you right when you go ahead and execute the command anyway? Why does SSMS complain that the object doesn’t exist when it obviously does? This happens because SSMS does not monitor database changes made in … Continue reading How to Get SSMS to Recognize an Existing Object (Refreshing Lists in SSMS)

The Self-Join SQL Query

There are times when it is necessary to join a table to itself. Let’s take a look at the Employee table in the AdventureWorks database to understand the need for a self-join and then how to put one together. We’ll see how to put together a simple self-join and then how to join more tables … Continue reading The Self-Join SQL Query