Vous êtes ici :
Comment transférer les projets de packages entre deux catalogues SSIS, par exemple pour copie ou migration vers un autre serveur.
Transfert de projets entre catalogues SSIS
Transact-SQL
1 2 3 4 5 6 7 8 9 10 11 |
-- Remplacez 'FolderName' et 'ProjectName' par vos noms de dossier et projet DECLARE @resultsTableVar table ( project_binary varbinary(max) ) INSERT @resultsTableVar (project_binary) EXECUTE [SOURCE_LINKED_SERVER].[SSISDB].[catalog].[get_project] 'FolderName', 'ProjectName' declare @project_binary varbinary(max) select @project_binary = project_binary from @resultsTableVar exec [SSISDB].[CATALOG].[deploy_project] 'FolderName', 'ProjectName', @project_binary GO |
Table of Contents