DatabaseOptions.RecursiveTriggersEnabled Property

Gets or sets the Boolean value that specifies whether recursive triggers are enabled on the database.

Namespace:  Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)

Syntax

'Declaration
<SfcPropertyAttribute> _
Public Property RecursiveTriggersEnabled As Boolean
    Get
    Set
'Usage
Dim instance As DatabaseOptions
Dim value As Boolean

value = instance.RecursiveTriggersEnabled

instance.RecursiveTriggersEnabled = value
[SfcPropertyAttribute]
public bool RecursiveTriggersEnabled { get; set; }
[SfcPropertyAttribute]
public:
property bool RecursiveTriggersEnabled {
    bool get ();
    void set (bool value);
}
[<SfcPropertyAttribute>]
member RecursiveTriggersEnabled : bool with get, set
function get RecursiveTriggersEnabled () : boolean
function set RecursiveTriggersEnabled (value : boolean)

Property Value

Type: System.Boolean
A Boolean value that specifies whether recursive triggers are enabled on the database.
If True, recursive triggers are enabled. Otherwise, False (default).

Remarks

This property specifies whether a trigger called by another trigger is executed.

This option can also be changed by using the Transact-SQL ALTER DATABASE statement.