Skip to content

Commit 74a1325

Browse files
ArieHeinrwestMSFT
authored andcommitted
Spelling fixes - part 001 (PR 9986)
1 parent 0d51bbb commit 74a1325

35 files changed

Lines changed: 45 additions & 45 deletions

File tree

data-migration/sql-server/database/assessment-rules.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ For more information, see [Azure SQL Database elastic query overview (preview)](
240240
Distributed transaction started by Transact SQL BEGIN DISTRIBUTED TRANSACTION and managed by Microsoft Distributed Transaction Coordinator (MS DTC) isn't supported in Azure SQL Database.
241241

242242
**Recommendation**
243-
Review affected objects section in Azure Migrate to see all objects using BEGIN DISTRUBUTED TRANSACTION. Consider migrating the participant databases to Azure SQL Managed Instance where distributed transactions across multiple instances are supported.
243+
Review affected objects section in Azure Migrate to see all objects using BEGIN DISTRIBUTED TRANSACTION. Consider migrating the participant databases to Azure SQL Managed Instance where distributed transactions across multiple instances are supported.
244244

245245
For more information, see [Transactions across multiple servers for Azure SQL Managed Instance](/azure/azure-sql/database/elastic-transactions-overview#transactions-for-sql-managed-instance).
246246

data-migration/sql-server/managed-instance/assessment-rules.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ More information: [Streaming Blobs To and From SQL Azure blog](https://azure.mic
243243
Distributed transaction started by Transact SQL BEGIN DISTRIBUTED TRANSACTION and managed by Microsoft Distributed Transaction Coordinator (MS DTC) isn't supported in Azure SQL Managed Instance if the remote server isn't SQL Server.
244244

245245
**Recommendation**
246-
Review affected objects section in Azure Migrate to see all objects using BEGIN DISTRUBUTED TRANSACTION. Consider migrating the participant databases to Azure SQL Managed Instance where distributed transactions across multiple instances are supported. For more information, see [Transactions across multiple servers for Azure SQL Managed Instance](/azure/azure-sql/database/elastic-transactions-overview#transactions-for-sql-managed-instance).
246+
Review affected objects section in Azure Migrate to see all objects using BEGIN DISTRIBUTED TRANSACTION. Consider migrating the participant databases to Azure SQL Managed Instance where distributed transactions across multiple instances are supported. For more information, see [Transactions across multiple servers for Azure SQL Managed Instance](/azure/azure-sql/database/elastic-transactions-overview#transactions-for-sql-managed-instance).
247247

248248
Alternatively, migrate to SQL Server on Azure VMs.
249249

@@ -256,7 +256,7 @@ Alternatively, migrate to SQL Server on Azure VMs.
256256
Distributed transaction started by Transact SQL BEGIN DISTRIBUTED TRANSACTION and managed by Microsoft Distributed Transaction Coordinator (MS DTC) is supported across multiple servers for Azure SQL Managed Instance.
257257

258258
**Recommendation**
259-
Review affected objects section in Azure Migrate to see all objects using BEGIN DISTRUBUTED TRANSACTION. Consider migrating the participant databases to Azure SQL Managed Instance where distributed transactions across multiple instances are supported. For more information, see [Transactions across multiple servers for Azure SQL Managed Instance](/azure/azure-sql/database/elastic-transactions-overview#transactions-for-sql-managed-instance).
259+
Review affected objects section in Azure Migrate to see all objects using BEGIN DISTRIBUTED TRANSACTION. Consider migrating the participant databases to Azure SQL Managed Instance where distributed transactions across multiple instances are supported. For more information, see [Transactions across multiple servers for Azure SQL Managed Instance](/azure/azure-sql/database/elastic-transactions-overview#transactions-for-sql-managed-instance).
260260

261261
Alternatively, migrate to SQL Server on Azure VMs.
262262

docs/ado/reference/ado-api/activecommand-property-example-vc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ void ActiveCommandX() {
137137
}
138138
139139
void ActiveCommandXprint(_RecordsetPtr pRst = NULL) {
140-
// Varible Declaration & initialization
140+
// Variable Declaration & initialization
141141
IADORecordBinding *picRs = NULL; // Interface Pointer declared.
142142
CAuthorsRs autrs; // C++ class object
143143
_bstr_t strName;

docs/ado/reference/ado-api/execute-requery-and-clear-methods-example-vc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ void PrintOutput(_RecordsetPtr pRstTemp) {
140140
141141
// Enumerate Recordset and print from each.
142142
while ( !(pRstTemp->EndOfFile) ) {
143-
// Convert variant string to convertable string type.
143+
// Convert variant string to convertible string type.
144144
bstrTitle = pRstTemp->Fields->GetItem("Title")->Value;
145145
bstrType = pRstTemp->Fields->GetItem("Type")->Value;
146146
printf("\t%s, %s \n", (LPCSTR) bstrTitle, (LPCSTR) bstrType);

docs/ado/reference/ado-api/getrows-method-example-jscript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dev_langs:
1313
- "JScript"
1414
---
1515
# GetRows Method Example (JScript)
16-
This example uses the [GetRows](./getrows-method-ado.md) method to retrieve all rows of the *Custiomers* table from a [Recordset](./recordset-object-ado.md) and to fill an array with the resulting data. The **GetRows** method will return fewer than the desired number of rows in two cases: either if [EOF](./bof-eof-properties-ado.md) has been reached, or if **GetRows** tried to retrieve a record that was deleted by another user. The function returns **False** only if the second case occurs. Cut and paste the following code to Notepad or another text editor, and save it as **GetRowsJS.asp**.
16+
This example uses the [GetRows](./getrows-method-ado.md) method to retrieve all rows of the *Customers* table from a [Recordset](./recordset-object-ado.md) and to fill an array with the resulting data. The **GetRows** method will return fewer than the desired number of rows in two cases: either if [EOF](./bof-eof-properties-ado.md) has been reached, or if **GetRows** tried to retrieve a record that was deleted by another user. The function returns **False** only if the second case occurs. Cut and paste the following code to Notepad or another text editor, and save it as **GetRowsJS.asp**.
1717

1818
```
1919
<!-- BeginGetRowsJS -->

docs/ado/reference/ado-api/movefirst-movelast-movenext-and-moveprevious-methods-example-vc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ void MoveFirstX() {
6666
6767
// Show current record information and get user's method choice.
6868
while (true) { // Continuous loop.
69-
// Convert variant string to convertable string type.
69+
// Convert variant string to convertible string type.
7070
bstrFName = pRstAuthors->Fields->Item["au_fName"]->Value;
7171
bstrLName = pRstAuthors->Fields->Item["au_lName"]->Value;
7272

docs/ado/reference/ado-api/update-and-cancelupdate-methods-example-vc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public:
7474
ULONG le_fnameStatus;
7575
};
7676
77-
// Function Declartion.
77+
// Function Declaration.
7878
inline void TESTHR(HRESULT x) { if FAILED(x) _com_issue_error(x); };
7979
void UpdateX();
8080
void UpdateX2();

docs/ado/reference/ado-api/willchangerecord-and-recordchangecomplete-events-ado.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The **WillChangeRecord** event is called before one or more records (rows) in th
2424
```
2525
2626
WillChangeRecord adReason, cRecords, adStatus, pRecordset
27-
RecordChangeCompleteadReason, cRecords, pError, adStatus, pRecordset
27+
RecordChangeCompletedReason, cRecords, pError, adStatus, pRecordset
2828
```
2929

3030
#### Parameters

docs/ado/reference/rds-api/filter-column-criterion-value-sortcolumn-sortdirection-example-vbscript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ dev_langs:
2121
> [!IMPORTANT]
2222
> Beginning with Windows 8 and Windows Server 2012, RDS server components are no longer included in the Windows operating system (see Windows 8 and [Windows Server 2012 Compatibility Cookbook](https://www.microsoft.com/download/details.aspx?id=27416) for more detail). RDS client components will be removed in a future version of Windows. Avoid using this feature in new development work, and plan to modify applications that currently use this feature. Applications that use RDS should migrate to [WCF Data Service](/dotnet/framework/wcf/).
2323
24-
The following code shows how to set the [RDS.DataControl](./datacontrol-object-rds.md) **Server** parameter at designtime and bind it to a data-aware HTML table using a data source. Cut and paste the following code to Notepad or another text editor and save it as **FilterColumnVBS.asp**.
24+
The following code shows how to set the [RDS.DataControl](./datacontrol-object-rds.md) **Server** parameter at design time and bind it to a data-aware HTML table using a data source. Cut and paste the following code to Notepad or another text editor and save it as **FilterColumnVBS.asp**.
2525

2626
```
2727
<!-- BeginFilterColumnVBS -->

docs/ado/reference/rds-api/refresh-method-example-vbscript.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,10 +138,10 @@ Sub Run_OnClick
138138
RDC.Connect = txtConnect.Value
139139
If EO = "adcExecSync" Then 'Determine which ExecuteOption chosen
140140
RDC.ExecuteOptions = adcExecSync
141-
MsgBox "Recordset brought in on current calling thread Syncronously"
141+
MsgBox "Recordset brought in on current calling thread Synchronously"
142142
Else
143143
RDC.ExecuteOptions = adcExecAsync
144-
MsgBox "Recordset brought in on another thread Asyncronously"
144+
MsgBox "Recordset brought in on another thread Asynchronously"
145145
End If
146146
147147
If FO = "adcFetchBackground" Then 'Determine which FetchOption chosen

0 commit comments

Comments
 (0)