ScriptingOptions.DdlBodyOnly 属性

Gets or sets the Boolean property value that specifies whether to script only the text definition for data definition language (DDL) objects that have a text body, such as stored procedures and triggers.

命名空间:  Microsoft.SqlServer.Management.Smo
程序集:  Microsoft.SqlServer.Smo(在 Microsoft.SqlServer.Smo.dll 中)

语法

声明
Public Property DdlBodyOnly As Boolean 
    Get 
    Set
用法
Dim instance As ScriptingOptions 
Dim value As Boolean 

value = instance.DdlBodyOnly

instance.DdlBodyOnly = value
public bool DdlBodyOnly { get; set; }
public:
property bool DdlBodyOnly {
    bool get ();
    void set (bool value);
}
member DdlBodyOnly : bool with get, set
function get DdlBodyOnly () : boolean 
function set DdlBodyOnly (value : boolean)

属性值

类型:System.Boolean
A Boolean value that specifies whether to script only the text body.If True, only the text body of the object is scripted.If False (default), the object is scripted completely.

注释

The DdlBodyOnly property applies only to objects with a text body containing a Transact-SQL statement that defines the object.

示例

The following code example specifies that only the text definition of any DDL objects will be scripted.

Visual Basic

Dim scOps As New ScriptingOptions()
scOps.DdlBodyOnly = true

PowerShell

$scOps = New-Object Microsoft.SqlServer.Management.Smo.ScriptingOptions
$scOps.DdlBodyOnly = $TRUE

请参阅

参考

ScriptingOptions 类

Microsoft.SqlServer.Management.Smo 命名空间

其他资源

脚本撰写