ScriptingOptions.NoVardecimal プロパティ
vardecimal 列を作成する場合、生成したスクリプトに N 句を含めるかどうかを示すオブジェクト値を取得または設定します。
名前空間: Microsoft.SqlServer.Management.Smo
アセンブリ: Microsoft.SqlServer.Smo (Microsoft.SqlServer.Smo.dll)
構文
'宣言
Public Property NoVardecimal As Boolean
Get
Set
'使用
Dim instance As ScriptingOptions
Dim value As Boolean
value = instance.NoVardecimal
instance.NoVardecimal = value
public bool NoVardecimal { get; set; }
public:
property bool NoVardecimal {
bool get ();
void set (bool value);
}
member NoVardecimal : bool with get, set
function get NoVardecimal () : boolean
function set NoVardecimal (value : boolean)
プロパティ値
型: System.Boolean
スクリプト作成オプションの NoFileStreamColumn 値を表す Boolean オブジェクトです。True の場合、vardecimal 列はスクリプトに含まれません。False (既定値) の場合、警告トークンは置き換えられません。
使用例
次のコード例では、vardecimal 列の作成時に、N 句をスクリプトに含めないように指定します。
Visual Basic
Dim scOps As New ScriptingOptions()
scOps.NoVardecimal = true
PowerShell
$scOps = New-Object Microsoft.SqlServer.Management.Smo.ScriptingOptions
$scOps.NoVardecimal = $TRUE
関連項目
参照
Microsoft.SqlServer.Management.Smo 名前空間