使用powershell scripts如何连接到独立的NosDB数据库?
默认情况下,Connect-DatabaseCluster显然会连接到群集。
答案 0 :(得分:2)
如果你这样做
get-help Connect-DatabaseCluster -full
您将获得所有可能值的列表。对你来说重要的是
-StandAlone [<SwitchParameter>]
Specifies if the database is standalone.
Required? false
Position? named
Default value
Accept pipeline input? true (ByValue, ByPropertyName)
Accept wildcard characters? false
所以你的命令改为
Connect-DatabaseCluster -StandAlone
它写在文档中