After modifying the computer, server name, SQL Server correction job--Shansi

Source: Internet
Author: User

The author here to rearrange: rename the SQL Server operating system after the computer name of the correction job.
Today's collation is as follows:
(1) Fix @ @servername

Please use the following code to execute the amendment directly without having to fill in any information. When the execution is complete, the system shuts down automatically, and you only need to restart SQL Server.

DECLARE @sn sysname, @sno sysname;
SELECT @sn =cast (serverproperty (' servername ') as sysname), @sno =@ @SERVERNAME;
IF @sno is NULL
 BEGIN
  EXEC sp_addserver @server = @sn, @local = ' local ';
  SELECT N ' Finish the server name to revise, and has already stopped serving, please restart the server ';
  SELECT N ' Complete server name
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.