1

问题在标题中。我有一个数据库服务器,其中有许多名称中带有句点的数据库(它们是 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。

4

2 回答 2

3

考虑.%2e数据库名称为foo.bar.com_content.

cd [foo%2ebar%2ecom_content]
于 2014-07-30T21:45:13.303 回答
1

拉胡尔的回答通常是正确的,但去掉括号。这是对拉胡尔答案的更正。

cd foo%2ebar%2ecom_content

如果您的名称约定使用空格,则将其括在引号中(单引号或双引号都可以)

cd 'foo%2eb ar%2ecom_content'
于 2014-07-31T03:03:15.580 回答