共用方式為


ScriptingOptions.DdlHeaderOnly 屬性

Gets or sets the Boolean property value that specifies whether to script only the header information 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 DdlHeaderOnly As Boolean 
    Get 
    Set
'用途
Dim instance As ScriptingOptions 
Dim value As Boolean 

value = instance.DdlHeaderOnly

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

屬性值

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

備註

The DdlHeaderOnly 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 header information of any DDL objects will be scripted.

Visual Basic

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

PowerShell

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

請參閱

參考

ScriptingOptions 類別

Microsoft.SqlServer.Management.Smo 命名空間

其他資源

指令碼