Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
Skip to content

Commit 983507d

Browse files
authored
Caught minor typos and corrected names for consistency
1 parent 7ce9475 commit 983507d

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

docs/database-engine/availability-groups/windows/troubleshoot-always-on-availability-groups-configuration-sql-server.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -220,21 +220,21 @@ Summary of steps is outlined below. For detailed step-by-step instructions, plea
220220
221221
### Examples
222222
223-
This illustrate the connection string for .NET System.Data.SqlClient provider for a virtual network name (VNN) listener:
223+
This illustrates the connection string for .NET System.Data.SqlClient provider for a virtual network name (VNN) listener:
224224
225225
```csharp
226226
Server=tcp:VNN_AgListener,1433;Database=AgDb1;ApplicationIntent=ReadOnly;MultiSubnetFailover=True
227227
```
228228

229-
This illustrate the connection string for .NET System.Data.SqlClient provider for a distributed network name (DNN) listener:
229+
This illustrates the connection string for .NET System.Data.SqlClient provider for a distributed network name (DNN) listener:
230230

231231
```csharp
232232
Server=tcp:DNN_AgListener,DNN_Port;Database=AgDb1;ApplicationIntent=ReadOnly;MultiSubnetFailover=True
233233
```
234234

235235
> [!NOTE]
236236
> If you are using command line programs like SQLCMD, ensure that you specify the correct switches for server name. For instance, in SQLCMD you must use the upper case -S switch that specifies server name, not the lower case -s switch which is used for column separator.
237-
> </br>Example: `sqlcmd -S Listerne1,port -E -d AgDb1 -K ReadOnly -M`
237+
> </br>Example: `sqlcmd -S AG_Listener,port -E -d AgDb1 -K ReadOnly -M`
238238

239239
4. Ensure that the availability group listener is online. To ensure that the availability group listener is online run the following query on the primary replica:
240240

@@ -245,7 +245,7 @@ Summary of steps is outlined below. For detailed step-by-step instructions, plea
245245
If you find the listener is offline you can attempt to bring it online using a command like this:
246246

247247
```sql
248-
ALTER AVAILABILITY GROUP myAG RESTART LISTENER 'myAG_Listener';
248+
ALTER AVAILABILITY GROUP myAG RESTART LISTENER 'AG_Listener';
249249
```
250250

251251
5. Ensure READ_ONLY_ROUTING_LIST is correctly populated. On Primary replica, ensure that the READ_ONLY_ROUTING_LIST contains only server instances that are hosting readable secondary replicas.
@@ -292,7 +292,7 @@ Summary of steps is outlined below. For detailed step-by-step instructions, plea
292292
- The IP addresses are configured correctly
293293

294294
> [!NOTE]
295-
> You can quickly verify all of these are properly configured if you can connect from a remote machine to a target secondary replica's [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] instance name using `TCP:SQLinstance` syntax.
295+
> You can quickly verify all of these are properly configured if you can connect from a remote machine to a target secondary replica's [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] instance name using `TCP:SQL_Instance` syntax.
296296
297297
See: [Configure a Server to Listen on a Specific TCP Port (SQL Server Configuration Manager)](../../configure-windows/configure-a-server-to-listen-on-a-specific-tcp-port.md) and [View or Change Server Properties (SQL Server)](../../configure-windows/view-or-change-server-properties-sql-server.md)
298298

0 commit comments

Comments
 (0)