After you install SQL Server on an Active/passive cluster
you need to provide cluster name for SQL Server Integration Services instance.
Same is case for named instance of SQL server where you have to provide
Lets assume for a cluster with 2 nodes Server1N1 and
Server1N2; the cluster name is Server1. Here is how your MsDtsSrvr.ini.xml
should look like.
<?xml version="1.0"
encoding="utf-8"?>
<DtsServiceConfiguration
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<StopExecutingPackagesOnShutdown>true</StopExecutingPackagesOnShutdown>
<TopLevelFolders>
<Folder
xsi:type="SqlServerFolder">
<Name>MSDB</Name>
<ServerName>Server1</ServerName>
</Folder>
<Folder
xsi:type="FileSystemFolder">
<Name>File
System</Name>
<StorePath>..\Packages</StorePath>
</Folder>
</TopLevelFolders>
</DtsServiceConfiguration>
For a named instance is should be
<?xml version="1.0"
encoding="utf-8"?>
<DtsServiceConfiguration
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<StopExecutingPackagesOnShutdown>true</StopExecutingPackagesOnShutdown>
<TopLevelFolders>
<Folder
xsi:type="SqlServerFolder">
<Name>MSDB</Name>
<ServerName>Server1\InstanceName</ServerName>
</Folder>
<Folder
xsi:type="FileSystemFolder">
<Name>File
System</Name>
<StorePath>..\Packages</StorePath>
</Folder>
</TopLevelFolders>
</DtsServiceConfiguration>
MsDtsSrvr.ini.xml can be found under SQL server installation
directory
C:\Program Files\Microsoft SQL Server\100\DTS\Binn
Once INI file is changed you need to restart SSIS service to
it to take effect
No comments:
Post a Comment