C # Process Control-stop and start SQL Server

Source: Internet
Author: User
Tags mssqlserver management studio sql server management sql server management studio

When we copy, rename, move, or delete SQL Server, the system cannot directly perform operations because the SQL service is enabled, and the service must be stopped, after the operation is complete, enable it again. You can use SQL Server Management studio or net start/stop MSSQLServer in cmd to stop and enable SQL Server. In the C # program, you can use either of the following methods to enable or disable the SQL Service:

Method 1: use C # To execute the CMD statement Net start/stop MSSQLServer. This method is not described in detail.

Method 2: process control.

Add reference first

Select the. NET control system. serviceprocess

After adding a reference, you can use it. First, in the program Header

Code:
  1. Using system. serviceprocess;

Then create Process Control for SQL Server

Code:
  1. Servicecontroller SC = new servicecontroller ("MSSQLServer ");

You need to stop the service.

Code:
  1. SC. Stop ();

Use it at the beginning

Code:
  1. SC. Start ();

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.