largo68
largo68

Reputation: 629

SSIS 2008 information warning when executing a package

Has anybody already faced a message like:

Information while loading package1:The package is attempting to configure from the XML file \xxxx\yyyyy\package1.dtsconfig

So I did set a configuration file to my package but I'm just wondering why I got this message even though the package is successfully executed.

Upvotes: 0

Views: 3785

Answers (3)

billinkc
billinkc

Reputation: 61211

This is expected behaviour. There is an option per package to suppress this message, SuppressConfigurationWarnings

If you don't want to edit your packages, you can try the SET option on package invocation /SET "\Package.Properties[SuppressConfigurationWarnings]";1

Upvotes: 3

Diego
Diego

Reputation: 36146

I would say that this is an info message that the configuration is being loaded but Its the first time I'm seeing it even though I use configuration files all the time. Are you sure your config file is ok? Can you post it here so we can take a look?

Upvotes: 0

cfrag
cfrag

Reputation: 746

I believe that is not a warning, just some information.

It is useful when debugging to help you make sure it is loading the correct configurations. If it failed to load the configurations you would have a a 'real' warning saying that it failed to load the configurations from said file.

This also happens when using parent package variables

Upvotes: 0

Related Questions