Skip to content

Latest commit

 

History

History
72 lines (56 loc) · 2.58 KB

File metadata and controls

72 lines (56 loc) · 2.58 KB
title sp_update_targetservergroup (Transact-SQL) | Microsoft Docs
ms.custom
ms.date 03/14/2017
ms.prod sql
ms.prod_service database-engine
ms.reviewer
ms.technology system-objects
ms.topic language-reference
f1_keywords
sp_update_targetservergroup_TSQL
sp_update_targetservergroup
dev_langs
TSQL
helpviewer_keywords
sp_update_targetservergroup
ms.assetid 4ac65ed6-e07e-40e4-a282-13bfd92dfa41
author stevestein
ms.author sstein

sp_update_targetservergroup (Transact-SQL)

[!INCLUDEtsql-appliesto-ss2008-xxxx-xxxx-xxx-md]

Changes the name of the specified target server group.

Topic link icon Transact-SQL Syntax Conventions

Syntax

  
sp_update_targetservergroup  
     [@name =] 'current_name' ,  
     [@new_name =] 'new_name'  

Arguments

[ @name = ] 'current_name' The name of the target server group. current_name is sysname, with no default.

[ @new_name = ] 'new_name' The new name for the target server group. new_name is sysname, with no default.

Return Code Values

0 (success) or 1 (failure)

Permissions

To run this stored procedure, users must be granted the sysadmin fixed server role.

Remarks

sp_update_targetservergroup must be run from the msdb database.

Examples

The following example changes the name of the target server group Servers Processing Customer Orders to Local Servers Processing Customer Orders.

USE msdb ;  
GO  
  
EXEC dbo.sp_update_targetservergroup  
    @name = N'Servers Processing Customer Orders',  
    @new_name = N'Local Servers Processing Customer Orders' ;  
GO  

See Also

sp_add_targetservergroup (Transact-SQL)
sp_delete_targetservergroup (Transact-SQL)
sp_help_targetservergroup (Transact-SQL)
System Stored Procedures (Transact-SQL)