Skip to content

Commit d173a3e

Browse files
committed
[SCOPED] Minor character fixes
1 parent 455daa7 commit d173a3e

28 files changed

Lines changed: 36 additions & 36 deletions

azure-sql/includes/tls-deprecation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,19 +32,19 @@ After August 31, 2025, TLS 1.0 and 1.1 will no longer be supported, and connecti
3232

3333
- To verify the minimum TLS version configured for your Azure Database for MySQL Server, check the value of the `tls_version` server parameter using the MySQL command-line interface to understand what protocols are configured.
3434

35-
#### Why was my service flagged if Ive already configured TLS 1.2?
35+
#### Why was my service flagged if I've already configured TLS 1.2?
3636

3737
Services might be incorrectly flagged due to:
3838

3939
- Intermittent fallback to older TLS versions by legacy clients.
40-
- Misconfigured client libraries or connection strings that dont enforce TLS 1.2.
40+
- Misconfigured client libraries or connection strings that don't enforce TLS 1.2.
4141
- Telemetry lag or false positives in detection logic.
4242

4343
#### What should I do if I received a retirement notice in error?
4444

4545
If your server or database is already configured with minimum TLS 1.2, or configured with no minimum TLS (the default setting in SQL Database and SQL Managed Instance `minimalTLSVersion` that maps to `0`) and connecting with 1.2, no action is required.
4646

47-
#### What happens if my application or client library doesnt support TLS 1.2?
47+
#### What happens if my application or client library doesn't support TLS 1.2?
4848

4949
Connections will fail once TLS 1.0/1.1 are disabled. You must upgrade your client libraries, drivers, or frameworks to versions that support TLS 1.2.
5050

azure-sql/managed-instance/identify-query-performance-issues.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Several workarounds can mitigate PSP problems. Each workaround has associated tr
6363

6464
- A new feature introduced with SQL Server 2022 (16.x) is [Parameter Sensitive Plan optimization](/sql/relational-databases/performance/parameter-sensitivity-plan-optimization), which attempts to mitigate most suboptimal query plans caused by parameter sensitivity. This is enabled with database compatibility level 160.
6565
- Use the [RECOMPILE](/sql/t-sql/queries/hints-transact-sql-query) query hint at each query execution. This workaround trades compilation time and increased CPU for better plan quality. The `RECOMPILE` option is often not possible for workloads that require a high throughput.
66-
- Use the [OPTION (OPTIMIZE FOR)](/sql/t-sql/queries/hints-transact-sql-query) query hint to override the actual parameter value with a typical parameter value that produces a plan that's good enough for most parameter value possibilities. This option requires a good understanding of optimal parameter values and associated plan characteristics.
66+
- Use the [OPTION (OPTIMIZE FOR...)](/sql/t-sql/queries/hints-transact-sql-query) query hint to override the actual parameter value with a typical parameter value that produces a plan that's good enough for most parameter value possibilities. This option requires a good understanding of optimal parameter values and associated plan characteristics.
6767
- Use the [OPTION (OPTIMIZE FOR UNKNOWN)](/sql/t-sql/queries/hints-transact-sql-query) query hint to override the actual parameter value and instead use the density vector average. You can also do this by capturing the incoming parameter values in local variables and then using the local variables within the predicates instead of using the parameters themselves. For this fix, the average density must be *good enough*.
6868
- Disable parameter sniffing entirely by using the [DISABLE_PARAMETER_SNIFFING](/sql/t-sql/queries/hints-transact-sql-query) query hint.
6969
- Use the [KEEPFIXEDPLAN](/sql/t-sql/queries/hints-transact-sql-query) query hint to prevent recompilations in cache. This workaround assumes that the good-enough common plan is the one in cache already. You can also disable automatic statistics updates to reduce the chances that the good plan will be evicted and a new bad plan will be compiled.

azure-sql/managed-instance/managed-instance-link-best-practices.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ EXEC sp_validate_certificate_ca_chain <certificate_id>
121121
GO
122122
```
123123

124-
A response of `Commands completed successfully. Completion time: ` indicates the MI endpoint certificate has been successfully validated.
124+
A response of `Commands completed successfully. Completion time: ...` indicates the MI endpoint certificate has been successfully validated.
125125

126126
> [!IMPORTANT]
127127
> The stored procedure `sp_validate_certificate_ca_chain` relies on host OS services to perform certificate validation, which might involve an online certificate revocation check. If the host OS is not configured to access the internet, the execution fails even if the certificate chain is valid.

docs/connect/ado-net/sql/bulk-copy-example-setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The **BulkCopyDemoMatchingColumns** and **BulkCopyDemoDifferentColumns** tables
2222
A few of the code samples demonstrate how to use one <xref:Microsoft.Data.SqlClient.SqlBulkCopy> class to write to multiple tables. For these samples, the **BulkCopyDemoOrderHeader** and **BulkCopyDemoOrderDetail** tables are used as the destination tables. These tables are based on the **Sales.SalesOrderHeader** and **Sales.SalesOrderDetail** tables in **AdventureWorks**.
2323

2424
> [!NOTE]
25-
> The **SqlBulkCopy** code samples are provided to demonstrate the syntax for using **SqlBulkCopy** only. If the source and destination tables are located in the same SQL Server instance, it is easier and faster to use a Transact-SQL `INSERT SELECT` statement to copy the data.
25+
> The **SqlBulkCopy** code samples are provided to demonstrate the syntax for using **SqlBulkCopy** only. If the source and destination tables are located in the same SQL Server instance, it is easier and faster to use a Transact-SQL `INSERT ... SELECT` statement to copy the data.
2626
2727
## Table setup
2828
To create the tables necessary for the code samples to run correctly, you must run the following Transact-SQL statements in a SQL Server database.

docs/connect/ado-net/sql/multiple-bulk-copy-operations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ If you perform several bulk copy operations using the same <xref:Microsoft.Data.
2525
## Example
2626

2727
> [!IMPORTANT]
28-
> This sample will not run unless you have created the work tables as described in [Bulk copy example setup](bulk-copy-example-setup.md). This code is provided to demonstrate the syntax for using **SqlBulkCopy** only. If the source and destination tables are located in the same SQL Server instance, it is easier and faster to use a Transact-SQL `INSERT SELECT` statement to copy the data.
28+
> This sample will not run unless you have created the work tables as described in [Bulk copy example setup](bulk-copy-example-setup.md). This code is provided to demonstrate the syntax for using **SqlBulkCopy** only. If the source and destination tables are located in the same SQL Server instance, it is easier and faster to use a Transact-SQL `INSERT ... SELECT` statement to copy the data.
2929
3030
[!code-csharp[DataWorks SqlBulkCopy_._ColumnMappingOrdersDetails#1](~/../sqlclient/doc/samples/SqlBulkCopy_ColumnMappingOrdersDetails.cs#1)]
3131

docs/connect/ado-net/sql/single-bulk-copy-operations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ The general steps for performing a bulk copy operation are as follows:
4646
The following console application demonstrates how to load data using the <xref:Microsoft.Data.SqlClient.SqlBulkCopy> class. In this example, a <xref:Microsoft.Data.SqlClient.SqlDataReader> is used to copy data from the **Production.Product** table in the SQL Server **AdventureWorks** database to a similar table in the same database.
4747

4848
> [!IMPORTANT]
49-
> This sample will not run unless you have created the work tables as described in [Bulk copy example setup](bulk-copy-example-setup.md). This code is provided to demonstrate the syntax for using **SqlBulkCopy** only. If the source and destination tables are located in the same SQL Server instance, it is easier and faster to use a Transact-SQL `INSERT SELECT` statement to copy the data.
49+
> This sample will not run unless you have created the work tables as described in [Bulk copy example setup](bulk-copy-example-setup.md). This code is provided to demonstrate the syntax for using **SqlBulkCopy** only. If the source and destination tables are located in the same SQL Server instance, it is easier and faster to use a Transact-SQL `INSERT ... SELECT` statement to copy the data.
5050
5151
[!code-csharp[DataWorks SqlBulkCopy_WriteToServer#1](~/../sqlclient/doc/samples/SqlBulkCopy_WriteToServer.cs#1)]
5252

docs/connect/php/use-table-valued-parameters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ sqlsrv_next_result($stmt);
130130

131131
### Use the PDO_SQLSRV driver
132132

133-
This is an equivalent example when using the PDO_SQLSRV driver. You can use prepare/execute with [bindParam](../../connect/php/pdostatement-bindparam.md) and specify the TVP input as a `PDO::PARAM_LOB`. If not, you'll get this error: `Operand type clash: nvarchar is incompatible with `.
133+
This is an equivalent example when using the PDO_SQLSRV driver. You can use prepare/execute with [bindParam](../../connect/php/pdostatement-bindparam.md) and specify the TVP input as a `PDO::PARAM_LOB`. If not, you'll get this error: `Operand type clash: nvarchar is incompatible with ...`.
134134

135135
```php
136136
try {

docs/machine-learning/python/reference/azureml-model-management-sdk/mlserver.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ ML Server supports two forms of authentication contexts:
4141

4242
* LDAP: tuple *(username, password)*
4343

44-
* Azure Active Directory (AAD): dict *{}*
44+
* Azure Active Directory (AAD): dict *{...}*
4545

4646
* access-token: str *=4534535*
4747

docs/master-data-services/master-data-services-host-database-on-managed-instance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ To fix this issue, you need upgrade the database version:
215215

216216
![Screenshot of the Connect to a Master Data Service Database dialog box.](../master-data-services/media/mds-sqlserver2019-config-mi-connectdbname.png "mds-SQLServer2019-Config-MI_ConnectDBName")
217217

218-
1. Select **Upgrade Database** .
218+
1. Select **Upgrade Database...** .
219219

220220
![Screenshot of the Upgrade Database option.](../master-data-services/media/mds-sqlserver2019-config-mi-selectupgradedb.png "mds-SQLServer2019-Config-MI_SelectUpgradeDB")
221221

docs/relational-databases/polybase/polybase-errors-and-possible-solutions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,9 @@ If there are multiple files per table, put each set of files into different dire
102102

103103
```syntaxsql
104104
Create External Table foo
105-
(col1 int)WITH (LOCATION='/bar/foobar.txt',DATA_SOURCE); OR
105+
(col1 int)WITH (LOCATION='/bar/foobar.txt',DATA_SOURCE...); OR
106106
Create External Table foo
107-
(col1 int) WITH (LOCATION = '/bar/', DATA_SOURCE);
107+
(col1 int) WITH (LOCATION = '/bar/', DATA_SOURCE...);
108108
```
109109

110110
> [!NOTE]

0 commit comments

Comments
 (0)