Table of Contents
How to Start and Stop Services in MS SQL Server is easier to understand when the core ideas are paired with practical examples. The sections below explain the topic clearly, highlight useful steps, and point out details that can prevent common errors.
MS SQL Server brings two main services for creating and maintaining databases (CSDL). There are also additional services for other purposes.
The two main services of MS SQL Server include:
- SQL Server
- SQL Server Agent
Additional services of MS SQL Server include:
- SQL Server Browser
- SQL Server FulL Text Search
- SQL Server Integration Services
- SQL Server Reporting Services
- SQL Server Analysis Services
You can start or suspend the use of the above services by the way below.
Start the service in MS SQL Server
To start any service in MS SQL Server, you can use 1 of 2 ways below.
Method 1: Use Services.msc
Step 1 : Go to the Run dialog box , type services.msc and click OK. The screen below will appear.
Find services in Windows Run dialog box
Step 2 : To start, right-click on the service you need and select Start. Then the service will start as shown in the image below.
The selected service has been started
Method 2: Use SQL Server Configuration Manager
Step 1: Open the manager with the Start steps> All Programs > MS SQL Server 2012 > Configuration Tools > SQL Server Configuration Manager.
The service list appears when the manager is opened
Step 2: Select the service name, right click and select Start. Service starts successfully as shown below.
Successful startup of service in MS SQL Server
Stop service in MS SQL Server
To stop the service in MS SQL Server, use 1 of 3 ways.
Method 1: Use Services.msc
Step 1 : Go to the Run dialog box , type services.msc and click OK. as in Step 1 - way 1 when starting the service.
Step 2: To stop the service, right-click and select Stop. The selected service will be stopped as shown in the image below.
Method 2: Use SQL Server Configuration Manager
Step 1: Open Configuration Manager with the steps as in step 2 - way 2 when starting the service.
Step 2: Select the service to stop, right-click and select Stop. The selected service will stop.
Method 3: Use SQL Server Management Studio SSMS
Step 1: Connect to the SQL Server installation as shown below.
SQL Server TESTINSTANCE
Step 2: Right-click the name of the installation and select Stop. The screen below will appear.
Dialog box when selecting Stop installation of SQL Server
Step 3: Select Yes, the screen below will appear.
Reconfirm service suspension
FAQ
What should you know about start the service in MS SQL Server?
To start any service in MS SQL Server, you can use 1 of 2 ways below.
What should you know about stop service in MS SQL Server?
To stop the service in MS SQL Server, use 1 of 3 ways.
What is How to Start and Stop Services in MS SQL Server?
MS SQL Server brings two main services for creating and maintaining databases (CSDL).
Reader Comments 0
Sign in with email or Google to join the discussion.