共用方式為


ServerDdlTrigger.Text 屬性

Gets or sets the Transact-SQL statement that defines the server data definition language (DDL) trigger.

命名空間:  Microsoft.SqlServer.Management.Smo
組件:  Microsoft.SqlServer.Smo (在 Microsoft.SqlServer.Smo.dll 中)

語法

'宣告
<SfcPropertyAttribute(SfcPropertyFlags.None Or SfcPropertyFlags.Expensive Or SfcPropertyFlags.Standalone)> _
Public ReadOnly Property Text As String 
    Get
'用途
Dim instance As ServerDdlTrigger 
Dim value As String 

value = instance.Text
[SfcPropertyAttribute(SfcPropertyFlags.None|SfcPropertyFlags.Expensive|SfcPropertyFlags.Standalone)]
public string Text { get; }
[SfcPropertyAttribute(SfcPropertyFlags::None|SfcPropertyFlags::Expensive|SfcPropertyFlags::Standalone)]
public:
property String^ Text {
    String^ get ();
}
[<SfcPropertyAttribute(SfcPropertyFlags.None|SfcPropertyFlags.Expensive|SfcPropertyFlags.Standalone)>]
member Text : string
function get Text () : String

屬性值

型別:System.String
A String value that specifies the actual text of the Transact-SQL statement that defines the server DDL trigger.

備註

The Text property of the ServerDdlTrigger object is equivalent to the sql_statement argument that comes after the AS clause in the CREATE TRIGGER Transact-SQL statement.

範例

建立、改變和移除觸發程式

請參閱

參考

ServerDdlTrigger 類別

Microsoft.SqlServer.Management.Smo 命名空間

其他資源

DDL 觸發程序

CREATE TRIGGER (Transact-SQL)