Skip to content

Latest commit

 

History

History
77 lines (55 loc) · 2.09 KB

sp-update-targetservergroup-transact-sql.md

File metadata and controls

77 lines (55 loc) · 2.09 KB
title description author ms.author ms.reviewer ms.date ms.service ms.subservice ms.topic f1_keywords helpviewer_keywords dev_langs
sp_update_targetservergroup (Transact-SQL)
Changes the name of the specified target server group.
markingmyname
maghan
randolphwest
08/28/2023
sql
system-objects
reference
sp_update_targetservergroup_TSQL
sp_update_targetservergroup
sp_update_targetservergroup
TSQL

sp_update_targetservergroup (Transact-SQL)

[!INCLUDE SQL Server]

Changes the name of the specified target server group.

:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: Transact-SQL syntax conventions

Syntax

sp_update_targetservergroup
    [ @name = ] N'name'
    , [ @new_name = ] N'new_name'
[ ; ]

Arguments

[ @name = ] N'name'

The name of the target server group. @name is sysname, with no default.

[ @new_name = ] N'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

Related content