ScriptingOptions.AnsiPadding Property

 

Applies To: SQL Server 2016 Preview

Gets or sets a Boolean property that specifies whether the generated script contains the Transact-SQL statements SET ANSI-PADDING ON and SET ANSI-PADDING OFF before and after the CREATE TABLE statement, respectively.

Namespace:   Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)

Syntax

public bool AnsiPadding { get; set; }
public:
property bool AnsiPadding {
    bool get();
    void set(bool value);
}
member AnsiPadding : bool with get, set
Public Property AnsiPadding As Boolean

Property Value

Type: System.Boolean

A Boolean value that specifies whether the ANSI padding statements are included in the generated script.

If True, the generated script contains the Transact-SQL statements SET ANSI-PADDING ON and SET ANSI-PADDING OFF before and after the CREATE TABLE statement respectively. Otherwise, False (default).

Remarks

The following code example specifies that the script uses ANSI padding statements.

Visual Basic

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

PowerShell

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

See Also

ScriptingOptions Class
Microsoft.SqlServer.Management.Smo Namespace
Scripting

Return to top