Microsoft SSIS Service: Registry setting specifying configuration file does not exist.
Posted
by
mbrc
on Super User
See other posts from Super User
or by mbrc
Published on 2011-10-13T17:10:15Z
Indexed on
2012/07/06
3:18 UTC
Read the original article
Hit count: 3051
sql-server-2008-r2
|ms-sql
Microsoft SSIS Service:
Registry setting specifying configuration file does not exist.
Attempting to load default config file.
For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
this is my MsDtsSrvr.ini.xml
<?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>.\SQL2008</ServerName>
</Folder>
<Folder xsi:type="FileSystemFolder">
<Name>File System</Name>
<StorePath>..\Packages</StorePath>
</Folder>
</TopLevelFolders>
</DtsServiceConfiguration>
i found here http://msdn.microsoft.com/en-us/library/ms137789.aspx
that i need to update my registry. Only entry at HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\100\SSIS\ServiceConfigFile is (Default) with no value.
what i must add in registry that i will not get this error any more?
© Super User or respective owner