Object Explorer

Navigate and manage SQL Server objects

Understanding Object Explorer

Object Explorer is the primary interface within SQL Server Management Studio (SSMS) for accessing, viewing, and managing all the objects within your SQL Server instances. It provides a hierarchical view of your databases, tables, views, stored procedures, and much more, allowing for intuitive navigation and efficient administration.

Key Features and Components

Commonly Used Objects

Tip: You can expand or collapse nodes by clicking the '+' or '-' icons next to them, or by using your keyboard's arrow keys.

Using Object Explorer for Common Tasks

Creating a New Table

  1. In Object Explorer, expand your server instance.
  2. Expand the Databases folder.
  3. Expand the desired database.
  4. Right-click on the Tables folder and select New Table....
  5. Define your table's columns, data types, and constraints in the designer.

Querying Data

  1. In Object Explorer, expand your server and database.
  2. Expand the Tables or Views folder.
  3. Right-click on the desired table or view and select Select Top 1000 Rows. This will open a new query window with a pre-generated query.
  4. Modify the query as needed and click Execute.

Screenshots

Here are some visual examples of Object Explorer in action:

Further Reading