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