问题在标题中。我有一个数据库服务器,其中有许多名称中带有句点的数据库(它们是 url,因此我知道哪个数据库与哪个站点相关联,例如 foo.bar.com_content)。当我导航到SQLSERVER:\sql\[server]\default\databases
并运行时,get-childitem
我可以看到我所有数据库的列表。当我尝试时,cd [database name with period]
我收到以下错误:
Set-Location : SQL Server PowerShell provider error: The number of keys specified does not match the number of keys required to address this object. The number of keys required are: Name.
At line:1 char:3
+ cd <<<< '[database name with periods here]'
+ CategoryInfo : InvalidData: (SQLSERVER:\sql\...t.org_Content:SqlPath) [Set-Location], GenericProviderException
+ FullyQualifiedErrorId : KeysNotMatching,Microsoft.PowerShell.Commands.SetLocationCommand
该错误重复四次,然后是:
Set-Location : Cannot find path 'SQLSERVER:\sql\[servername]\default\databases\[database name with periods here]' because it does not exist.
At line:1 char:3
+ cd <<<< '[database name with periods here]'
+ CategoryInfo : ObjectNotFound: (SQLSERVER:\sql\...t.org_Content:String) [Set-Location], ItemNotFoundException
+ FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.SetLocationCommand
我可以对名称中没有句点的同一台服务器上的数据库运行相同的命令并且连接得很好。
我在安装了 SQL Server 2012 工具的 Powershell ISE、Powershell v2.0 中的 Windows 桌面计算机上运行它。远程数据库服务器正在运行 SQL Server 2008r2。