0

在当前的 Powershell 会话中,我正在运行以下命令

Import-Module SqlServer
Import-Module SQLPS

SqlServer 的 Import-Module 命令工作正常,但 SQLPS 的 Import-Module 命令失败

PS C:\windows\system32> Import-Module SqlServer
PS C:\windows\system32> Import-Module SQLPS
Import-Module : The following error occurred while loading the extended type data file: Error in TypeData
"Microsoft.SqlServer.Management.Smo.NamedSmoObject": The member DefaultKeyPropertySet is already present.
Error in TypeData "Microsoft.SqlServer.Management.Smo.NamedSmoObject": The member DefaultDisplayPropertySet is already
present.
Error in TypeData "Microsoft.SqlServer.Management.Smo.NamedSmoObject": The member DefaultDisplayProperty is already
present.
At line:1 char:1
+ Import-Module SQLPS
+ ~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidOperation: (:) [Import-Module], RuntimeException
    + FullyQualifiedErrorId : FormatXmlUpdateException,Microsoft.PowerShell.Commands.ImportModuleCommand

我尝试使用 Remove-Module 命令删除 SqlServer 模块,但没有成功。我有一个脚本,它在开始时导入 SqlServer 模块,然后脚本中有某些任务正在使用 SQLPS 模块(并且由于上述错误而失败)。我猜这两个模块不能在同一个 powershell 会话中加载。

4

1 回答 1

0

SQLPS 是旧版本的 SQLServer 模块,你是对的;两者格格不入。但是,SQLServer 模块旨在复制旧版本的所有功能。

于 2020-10-10T18:54:31.947 回答