Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Creates a set of scripting options by performing an subtraction operation on a ScriptingOptions object and a ScriptOption object.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Syntax
'Declaration
Public Shared Operator - ( _
options As ScriptingOptions, _
scriptOption As ScriptOption _
) As ScriptingOptions
'Usage
Dim options As ScriptingOptions
Dim scriptOption As ScriptOption
Dim returnValue As ScriptingOptions
returnValue = (options - scriptOption)
public static ScriptingOptions operator -(
ScriptingOptions options,
ScriptOption scriptOption
)
public:
static ScriptingOptions^ operator -(
ScriptingOptions^ options,
ScriptOption^ scriptOption
)
static let inline(-)
options:ScriptingOptions *
scriptOption:ScriptOption : ScriptingOptions
JScript unterstützt die Verwendung überladener Operatoren, aber nicht die Deklaration neuer Operatoren.
Parameter
- options
Typ: Microsoft.SqlServer.Management.Smo.ScriptingOptions
A ScriptingOptions object that specifies the scripting options.
- scriptOption
Typ: Microsoft.SqlServer.Management.Smo.ScriptOption
A ScriptOption object that specifies the script option to be subtracted from the options specified by the options parameter..
Rückgabewert
Typ: Microsoft.SqlServer.Management.Smo.ScriptingOptions
A ScriptingOptions object value that specifies a set of scripting options after the subtraction.
Beispiele
The following code example creates a new set of script options by subtracting a ScriptOption value from an existing ScriptingOptions object.
PowerShell
$scOps = New-Object Microsoft.SqlServer.Management.Smo.ScriptingOptions
$scOps.NoXmlNamespaces = $TRUE
$scOps.Permissions = $TRUE
$scOps2 = [Microsoft.SqlServer.Management.Smo.ScriptingOptions]::op_Subtraction($scOps, [Microsoft.SqlServer.Management.Smo.ScriptOption]::Permissions)
Siehe auch
Verweis
Microsoft.SqlServer.Management.Smo-Namespace