DTSLoggingMode Enumeration

 

Specifies the logging behavior of the container. The container can turn on logging, disable logging, or specify that the setting to use is the setting found on the parent container.

Namespace:   Microsoft.SqlServer.Dts.Runtime
Assembly:  Microsoft.SqlServer.ManagedDTS (in Microsoft.SqlServer.ManagedDTS.dll)

public enum class DTSLoggingMode

Member nameDescription
Disabled

Logging is disabled.

Enabled

Logging is enabled.

UseParentSetting

Logging value is taken from the logging mode setting of the parent container.

This enumeration is used by objects that have a LoggingMode property. The LoggingMode property is initially defined in the DtsContainer, and eventually inherited by containers such as the Package, Sequence, and other containers.

The following code example shows how to set the logging mode of a package by using this enumeration.

No code example is currently available or this language may not be supported.

Sample output:

Default LoggingMode: UseParentSetting

New LoggingMode: Disabled

Return to top
Show: