ScriptingOptions.SetTargetServerVersion 方法

Sets the version of the instance of SQL Server on which the scripting operation is run.

命名空间:  Microsoft.SqlServer.Management.Smo
程序集:  Microsoft.SqlServer.Smo(在 Microsoft.SqlServer.Smo.dll 中)

语法

声明
Public Sub SetTargetServerVersion ( _
    ver As ServerVersion _
)
用法
Dim instance As ScriptingOptions 
Dim ver As ServerVersion

instance.SetTargetServerVersion(ver)
public void SetTargetServerVersion(
    ServerVersion ver
)
public:
void SetTargetServerVersion(
    ServerVersion^ ver
)
member SetTargetServerVersion : 
        ver:ServerVersion -> unit
public function SetTargetServerVersion(
    ver : ServerVersion
)

参数

示例

The following code example sets the version number of the server upon which the script will run.

Visual Basic

Dim scOps As New ScriptingOptions()
Dim sVersion As New ServerVersion(2, 0)
scOps.SetTargetServerVersion(sVersion)

PowerShell

$scOps = New-Object Microsoft.SqlServer.Management.Smo.ScriptingOptions
$sVersion = New-Object Microsoft.SqlServer.Management.Common.ServerVersion(2,0)
$scOps.SetTargetServerVersion($sVersion)

请参阅

参考

ScriptingOptions 类

Microsoft.SqlServer.Management.Smo 命名空间

其他资源

脚本撰写