Configuring SSIS
Configure SSIS
When you want to use SSIS with a named instance or cluster or remote, you must configure the SSIS service in accordance with the recommendations of the article below:
Configuring the Integration Services Service
https://msdn2.microsoft.com/en-us/library/ms137789.aspx
To avoid problems related to the ambiguity of names msdb, you must also change the names of the tag <Name>MSDB</Name> of file MsDtsSrvr.ini.xml to differentiate each instance.
Configurer SSIS
Lorsque vous souhaitez utiliser SSIS avec un instance nommée ou en cluster ou distante, vous devez configurer le service SSIS en suivant les recommandations de l’article ci-dessous :
Configuration du service Integration Services
https://msdn.microsoft.com/fr-fr/library/ms137789.aspx
Afin d’éviter des problèmes liés à l’ambigüité des noms MSDB, vous devez aussi changer les noms de la balise <Name>MSDB</Name> du fichier MsDtsSrvr.ini.xml afin de différencier chaque instance.
Configurar SSIS
Cuando desee utilizar SSIS con una instancia con nombre o un grupo o remota, debe configurar el servicio SSIS en conformidad con las recomendaciones de la siguiente artículo :
Configurar el servicio Integration Services
https://msdn.microsoft.com/es-es/library/ms137789.aspx
Para evitar problemas relacionados con la ambigüedad de los nombres msdb, también debe cambiar el nombre de la etiqueta <Name>MSDB</Name> del archive MsDtsSrvr.ini.xml para diferenciar cada caso.
Código de ejemplo :<?xml version="1.0" encoding="utf-8"?>
<DtsServiceConfiguration xmlns:xsd="https://www.w3.org/2001/XMLSchema" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance">
<StopExecutingPackagesOnShutdown>true</StopExecutingPackagesOnShutdown>
<TopLevelFolders>
<Folder xsi:type="SqlServerFolder">
<Name>MSDB_instanceName</Name>
<ServerName>serverName\instanceName1</ServerName>
</Folder>
<Folder xsi:type="SqlServerFolder">
<Name>MSDB_instanceName2</Name>
<ServerName>serverName\instanceName1</ServerName>
</Folder>
<Folder xsi:type="FileSystemFolder">
<Name>File System application 1</Name>
<StorePath>C:\Packages\application1</StorePath>
</Folder>
<Folder xsi:type="FileSystemFolder">
<Name>File System application 2</Name>
<StorePath>C:\Packages\application2</StorePath>
</Folder>
</TopLevelFolders>
</DtsServiceConfiguration>
Michel Degremont | Microsoft EMEA
Product Support Services Developer - SQL Server Core Engineer |
Comments
- Anonymous
January 01, 2003
Short and to the point.