--- title: "sp_resync_targetserver (Transact-SQL) | Microsoft Docs" ms.custom: "" ms.date: "08/09/2016" ms.prod: "sql-non-specified" ms.reviewer: "" ms.suite: "" ms.technology: - "database-engine" ms.tgt_pltfrm: "" ms.topic: "language-reference" f1_keywords: - "sp_resync_targetserver" - "sp_resync_targetserver_TSQL" dev_langs: - "TSQL" helpviewer_keywords: - "sp_resync_targetserver" ms.assetid: 40e44df7-d3e3-44ee-b149-08aba629a21f caps.latest.revision: 31 author: "JennieHubbard" ms.author: "jhubbard" manager: "jhubbard" --- # sp_resync_targetserver (Transact-SQL) [!INCLUDE[tsql-appliesto-ss2008-xxxx-xxxx-xxx_md](../../includes/tsql-appliesto-ss2008-xxxx-xxxx-xxx-md.md)] Resynchronizes all multiserver jobs in the specified target server. || |-| |**Applies to**: [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] ([!INCLUDE[ssKatmai](../../includes/sskatmai-md.md)] through [current version](http://go.microsoft.com/fwlink/p/?LinkId=299658)).| ![Topic link icon](../../database-engine/configure-windows/media/topic-link.gif "Topic link icon") [Transact-SQL Syntax Conventions](../../t-sql/language-elements/transact-sql-syntax-conventions-transact-sql.md) ## Syntax ``` sp_resync_targetserver [ @server_name = ] 'server' ``` ## Arguments [ **@server_name =**] **'***server***'** The name of the server to resynchronize. *server* is **sysname**, with no default. If **ALL** is specified, all target servers are resynchronized. ## Return Code Values **0** (success) or **1** (failure) ## Result Sets 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 EXEC dbo.sp_resync_targetserver N'SEATTLE1' ; GO ``` ## See Also [sp_help_downloadlist (Transact-SQL)](../../relational-databases/system-stored-procedures/sp-help-downloadlist-transact-sql.md) [sp_post_msx_operation (Transact-SQL)](../../relational-databases/system-stored-procedures/sp-post-msx-operation-transact-sql.md) [System Stored Procedures (Transact-SQL)](../../relational-databases/system-stored-procedures/system-stored-procedures-transact-sql.md)