Skip to content

Latest commit

 

History

History
100 lines (59 loc) · 8.85 KB

File metadata and controls

100 lines (59 loc) · 8.85 KB
title Lesson 1: Connecting to the Database Engine | Microsoft Docs
ms.custom
ms.date 04/27/2017
ms.prod sql-server-2014
ms.reviewer
ms.technology
ms.topic conceptual
ms.assetid e8db82f0-50ed-4531-9209-940006ed34cb
author rothja
ms.author jroth
manager craigg

Lesson 1: Connecting to the Database Engine

When you install the [!INCLUDEssDEnoversion], the tools that are installed depend upon the edition and your setup choices. This lesson reviews the principal tools, and shows you how to connect and perform a basic function (authorizing more users).

Tools For Getting Started

The [!INCLUDEssDEnoversion] ships with a variety of tools. This topic describes the first tools you will need, and helps you select the right tool for the job. All tools can be accessed from the Start menu. Some tools, such as [!INCLUDEssManStudioFull], are not installed by default. You must select the tools as part of the client components during setup. For a complete description of the tools described below, search for them in [!INCLUDEssNoVersion] Books Online. [!INCLUDEssExpress] contains only a subset of the tools.

Basic Tools

  • [!INCLUDEssManStudioFull] is the principal tool for administering the [!INCLUDEssDE] and writing [!INCLUDEtsql] code. It is hosted in the [!INCLUDEvsprvs] shell. It is not included in [!INCLUDEssExpress] but is available as a separate download from Microsoft Download Center.

  • [!INCLUDEssNoVersion] Configuration Manager installs with both [!INCLUDEssNoVersion] and the client tools. It lets you enable server protocols, configure protocol options such as TCP ports, configure server services to start automatically, and configure client computers to connect in your preferred manner. This tool configures the more advanced connectivity elements but does not enable features.

Sample Database

The sample databases and samples are not included with [!INCLUDEssNoVersion]. Most of the examples that are described in [!INCLUDEssNoVersion] Books Online use the [!INCLUDEssSampleDBobject] sample database.

To start SQL Server Management Studio
  • On the Start menu, point to All Programs, point to [!INCLUDEssCurrentUI], and then click SQL Server Management Studio.
To start SQL Server Configuration Manager
  • On the Start menu, point to All Programs, point to [!INCLUDEssCurrentUI], point to Configuration Tools, and then click SQL Server Configuration Manager.

Connecting with Management Studio

It is easy to connect to the [!INCLUDEssDE] from tools that are running on the same computer if you know the name of the instance, and if you are connecting as a member of the Administrators group on the computer. The following procedures must be performed on the same computer that hosts [!INCLUDEssNoVersion].

To determine the name of the instance of the Database Engine
  1. Log into Windows as a member of the Administrators group, and open [!INCLUDEssManStudio].

    [!IMPORTANT]
    If you are connecting to [!INCLUDEssVersion2005] on [!INCLUDEwiprlhlong] or [!INCLUDEnextref_longhorn] (or more recent), you may need to right-click [!INCLUDEssManStudio] and then click Run as Administrator in order to connect using your Administrator credentials. Starting in [!INCLUDEssKatmai], setup adds selected logins to [!INCLUDEssNoVersion], so your Administrator credentials are not necessary.

  2. In the Connect to Server dialog box, click Cancel.

  3. If Registered Servers is not displayed, on the View menu, click Registered Servers.

  4. With Database Engine selected on the Registered Servers toolbar, expand Database Engine, right-click Local Server Groups, point to Tasks, and then click Register Local Servers. All instances of the [!INCLUDEssDE] installed on the computer are displayed. The default instance is unnamed and is shown as the computer name. A named instance displays as the computer name followed by a backward slash (\) and then the name of the instance. For [!INCLUDEssExpress], the instance is named <computer_name>\sqlexpress unless the name was changed during setup.

To verify that the Database Engine is running
  1. In Registered Servers, if the name of your instance of [!INCLUDEssNoVersion] has a green dot with a white arrow next to the name, the [!INCLUDEssDE] is running and no further action is necessary.

  2. If the name of your instance of [!INCLUDEssNoVersion] has a red dot with a white square next to the name, the [!INCLUDEssDE] is stopped. Right-click the name of the [!INCLUDEssDE], click Service Control, and then click Start. After a confirmation dialog box, the [!INCLUDEssDE] should start and the circle should turn green with a white arrow.

To connect to the Database Engine
  1. In [!INCLUDEssManStudio], on the File menu, click Connect Object Explorer.

    The Connect to Server dialog box opens. The Server type box displays the type of component that was last used.

  2. Select Database Engine.

  3. In the Server name box, type the name of the instance of the [!INCLUDEssDE]. For the default instance of SQL Server, the server name is the computer name. For a named instance of SQL Server, the server name is the <computer_name>\<instance_name>, such as ACCTG_SRVR\SQLEXPRESS.

  4. Click Connect.

Authorizing Additional Connections

Now that you have connected to [!INCLUDEssNoVersion] as an administrator, one of your first tasks is to authorize other users to connect. You do this by creating a login and authorizing that login to access a database as a user. Logins can be either Windows Authentication logins, which use credentials from Windows, or SQL Server Authentication logins, which store the authentication information in [!INCLUDEssNoVersion] and are independent of your Windows credentials. Use Windows Authentication whenever possible.

Create a Windows Authentication login
  1. In the previous task, you connected to the [!INCLUDEssDE] using [!INCLUDEssManStudio]. In Object Explorer, expand your server instance, expand Security, right-click Logins, and then click New Login.

    The Login - New dialog box appears.

  2. On the General page, in the Login name box, type a Windows login in the format <domain>\<login>.

  3. In the Default database box, select [!INCLUDEssSampleDBobject] if available. Otherwise select master.

  4. On the Server Roles page, if the new login is to be an administrator, click sysadmin, otherwise leave this blank.

  5. On the User Mapping page, select Map for the [!INCLUDEssSampleDBobject] database if it is available. Otherwise select master. Note that the User box is populated with the login. When closed, the dialog box will create this user in the database.

  6. In the Default Schema box, type dbo to map the login to the database owner schema.

  7. Accept the default settings for the Securables and Status boxes and click OK to create the login.

Important

This is basic information to get you started. [!INCLUDEssNoVersion] provides a rich security environment, and security is obviously an important aspect of database operations.

Next Lesson

Lesson 2: Connecting from Another Computer