Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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
See Also
Reference
Microsoft.SqlServer.Management.Smo Namespace