1

Using powershell scripts how can I connect to the standalone NosDB database?

Connect-DatabaseCluster apparently connects to the cluster by default.

1 Answer 1

2

If you do

 get-help Connect-DatabaseCluster -full

You'll get a list of all the possible values. The important one for you is

-StandAlone [<SwitchParameter>]
Specifies if the database is standalone.

Required?                    false
Position?                    named
Default value
Accept pipeline input?       true (ByValue, ByPropertyName)
Accept wildcard characters?  false

So your command changes to

Connect-DatabaseCluster -StandAlone

Its written in the documentation

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.