Skip to content

Latest commit

 

History

History
72 lines (50 loc) · 2.05 KB

File metadata and controls

72 lines (50 loc) · 2.05 KB
title sp_resync_targetserver (Transact-SQL)
description sp_resync_targetserver resynchronizes all multiserver jobs in the specified target server.
author markingmyname
ms.author maghan
ms.reviewer randolphwest
ms.date 06/23/2025
ms.service sql
ms.subservice system-objects
ms.topic reference
f1_keywords
sp_resync_targetserver
sp_resync_targetserver_TSQL
helpviewer_keywords
sp_resync_targetserver
dev_langs
TSQL

sp_resync_targetserver (Transact-SQL)

[!INCLUDE SQL Server]

Resynchronizes all multiserver jobs in the specified target server.

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

Syntax

sp_resync_targetserver [ @server_name = ] N'server_name'
[ ; ]

Arguments

[ @server_name = ] N'server_name'

The name of the server to resynchronize. @server_name is sysname, with no default. If all is specified, all target servers are resynchronized.

Return code values

0 (success) or 1 (failure).

Result set

Reports the result of sp_post_msx_operation actions.

Remarks

sp_resync_targetserver deletes the current set of instructions for the target server and posts a new set for the target server to download. The new set consists of an instruction to delete all multiserver jobs, followed by an insert for each job currently targeted at the server.

Permissions

Permissions to execute this procedure default to members of the sysadmin fixed server role.

Examples

The following example resynchronizes the SEATTLE1 target server.

USE msdb;
GO

EXECUTE dbo.sp_resync_targetserver N'SEATTLE1';
GO

Related content