Start-SqlInstance
啟動指定的 SQL Server 執行個體。
語法
Start-SqlInstance
[-Path <String[]>]
[-Credential] <PSCredential>
[-AutomaticallyAcceptUntrustedCertificates]
[-ManagementPublicPort <Int32>]
[-RetryTimeout <Int32>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Start-SqlInstance
-InputObject <Server[]>
[-Credential] <PSCredential>
[-AutomaticallyAcceptUntrustedCertificates]
[-ManagementPublicPort <Int32>]
[-RetryTimeout <Int32>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Start-SqlInstance
-ServerInstance <String[]>
[-Credential] <PSCredential>
[-AutomaticallyAcceptUntrustedCertificates]
[-ManagementPublicPort <Int32>]
[-RetryTimeout <Int32>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Description
Start-SqlInstance Cmdlet 會啟動指定的 SQL Server 實例。
SQL Server 雲端配接器必須在主控 SQL Server 執行個體的電腦上執行及存取。
這個 Cmdlet 支援下列作業模式:
- 將 實例指定為Windows PowerShell路徑。
- 指定伺服器物件。
- 指定SQL Server目標實例的 ServerInstance 物件。
Note: This cmdlet ceased to work a long time ago. It's been removed in version 22 of the module.
範例
範例 1:啟動SQL Server實例
PS C:\> CD SQLSERVER:\SQL\Computer\Instance
PS SQLSERVER:\SQL\Computer\Instance> Start-SqlInstance -Credential $Credential -AcceptSelfSignedCertificate
第一個命令會將目錄變更為路徑 SQLSERVER:\SQL\Computer\Instance
。
範例 2:啟動目的電腦上SQL Server的所有實例
PS C:\> Get-SqlInstance -Credential $Credential -MachineName "Computer004" | Start-SqlInstance -Credential $Credential -AcceptSelfSignedCertificate
此命令會在名為 Computer004
的電腦上取得SQL Server的所有實例,然後啟動所有實例。
系統會自動接受目的電腦的自我簽署憑證,而不會提示使用者。
參數
-AutomaticallyAcceptUntrustedCertificates
表示此 Cmdlet 會自動接受不受信任的憑證。
類型: | SwitchParameter |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-Confirm
在執行 Cmdlet 前提示您確認。
類型: | SwitchParameter |
別名: | cf |
Position: | Named |
預設值: | False |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-Credential
指定目的電腦上具有 Windows 系統管理員認證的使用者帳戶。
類型: | PSCredential |
Position: | 0 |
預設值: | None |
必要: | True |
接受管線輸入: | False |
接受萬用字元: | False |
-InputObject
指定目標實例的伺服器物件陣列。
類型: | Server[] |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | True |
接受萬用字元: | False |
-ManagementPublicPort
指定目的電腦上的公用管理埠。 當目的電腦的埠無法直接存取,但會透過端點公開時,就會使用此參數。 這表示此 Cmdlet 必須連線到不同的埠。
SQL Server 雲端配接器必須以此連接埠存取。
類型: | Int32 |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-Path
指定SQL Server實例的路徑,做為此 Cmdlet 執行作業的字串陣列。 如果您未指定此參數的值,Cmdlet 會使用目前的工作位置。
類型: | String[] |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-RetryTimeout
指定在目標伺服器上重試命令的時間週期。 超過逾時設定之後,就不會再嘗試重試。
類型: | Int32 |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-ServerInstance
指定做為字串陣列,這是成為作業目標的 SQL Server 實例名稱。
類型: | String[] |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | True |
接受萬用字元: | False |
-WhatIf
顯示執行 Cmdlet 後會發生的情況。 Cmdlet 並不會執行。
類型: | SwitchParameter |
別名: | wi |
Position: | Named |
預設值: | False |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
輸入
Microsoft.SqlServer.Management.Smo.Server[]
System.String[]