ScriptingOptions.AnsiPadding 属性
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.
命名空间: Microsoft.SqlServer.Management.Smo
程序集: Microsoft.SqlServer.Smo(在 Microsoft.SqlServer.Smo.dll 中)
语法
声明
Public Property AnsiPadding As Boolean
Get
Set
用法
Dim instance As ScriptingOptions
Dim value As Boolean
value = instance.AnsiPadding
instance.AnsiPadding = value
public bool AnsiPadding { get; set; }
public:
property bool AnsiPadding {
bool get ();
void set (bool value);
}
member AnsiPadding : bool with get, set
function get AnsiPadding () : boolean
function set AnsiPadding (value : boolean)
属性值
类型: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).
注释
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
请参阅
参考
Microsoft.SqlServer.Management.Smo 命名空间