Skip to content

Commit eb28653

Browse files
authored
Merge pull request #5682 from MicrosoftDocs/FromPublicRepo
Confirm merge from FromPublicRepo to master to sync with https://github.com/MicrosoftDocs/sql-docs (branch live)
2 parents 0e5e267 + 774de9a commit eb28653

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

docs/sql-server/failover-clusters/windows/configure-cluster-quorum-nodeweight-settings.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,12 @@ ms.workload: "On Demand"
6161
4. Output the cluster node properties in a readable format.
6262

6363
### Example (Powershell)
64-
The following example changes the NodeWeight setting to remove the quorum vote for the “Always OnSrv1” node, and then outputs the settings for all nodes in the cluster.
64+
The following example changes the NodeWeight setting to remove the quorum vote for the “AlwaysOnSrv1” node, and then outputs the settings for all nodes in the cluster.
6565

6666
```powershell
6767
Import-Module FailoverClusters
6868
69-
$node = “Always OnSrv1
69+
$node = “AlwaysOnSrv1
7070
(Get-ClusterNode $node).NodeWeight = 0
7171
7272
$cluster = (Get-ClusterNode $node).Cluster
@@ -87,10 +87,10 @@ $nodes | Format-Table -property NodeName, State, NodeWeight
8787
2. Use **cluster.exe** to set `NodeWeight` values.
8888

8989
### Example (Cluster.exe)
90-
The following example changes the NodeWeight value to remove the quorum vote of the “Always OnSrv1” node in the “Cluster001” cluster.
90+
The following example changes the NodeWeight value to remove the quorum vote of the “AlwaysOnSrv1” node in the “Cluster001” cluster.
9191

9292
```ms-dos
93-
cluster.exe Cluster001 node Always OnSrv1 /prop NodeWeight=0
93+
cluster.exe Cluster001 node AlwaysOnSrv1 /prop NodeWeight=0
9494
```
9595

9696
## <a name="RelatedContent"></a> Related Content

docs/t-sql/queries/select-into-clause-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ ORDER BY YearlyIncome;
230230
### F. Creating a new table as a copy of another table and loading it a specified filegroup
231231
The following example demonstrates creating a new table as a copy of another table and loading it into a specified filegroup different from the default filegroup of the user.
232232

233-
**Applies to:** [!INCLUDE[sssqlv14-md](../../includes/sssqlv14-md.md)]
233+
**Applies to:** [!INCLUDE[ssSQL15](../../includes/sssql15-md.md)] SP2 through [!INCLUDE[ssCurrent](../../includes/sscurrent-md.md)].
234234

235235
```sql
236236
ALTER DATABASE [AdventureWorksDW2016] ADD FILEGROUP FG2;

0 commit comments

Comments
 (0)