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(SfcPropertyFlags.Standalone)> _
Public Property RecursiveTriggersEnabled As Boolean 
    Get 
    Set
'Usage
Dim instance As DatabaseOptions 
Dim value As Boolean 

value = instance.RecursiveTriggersEnabled

instance.RecursiveTriggersEnabled = value
[SfcPropertyAttribute(SfcPropertyFlags.Standalone)]
public bool RecursiveTriggersEnabled { get; set; }
[SfcPropertyAttribute(SfcPropertyFlags::Standalone)]
public:
property bool RecursiveTriggersEnabled {
    bool get ();
    void set (bool value);
}
[<SfcPropertyAttribute(SfcPropertyFlags.Standalone)>]
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.

Examples

Setting Properties

See Also

Reference

DatabaseOptions Class

Microsoft.SqlServer.Management.Smo Namespace

Other Resources

Database Options