Skip to content

Commit 585b7f5

Browse files
Merge pull request #32410 from rwestMSFT/rw-1114-fix-9928
[SCOPED] Fix typos (PR 9928)
2 parents 01080c1 + ccc87c7 commit 585b7f5

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

azure-sql/managed-instance/replication-transactional-overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,12 +212,12 @@ If a **subscriber** SQL managed instance is in a failover group, the publication
212212

213213
### Transaction log and Transactional Replication
214214

215-
In usual circumstances, transcation log is used for recording changes of the data within a database. Changes are recorded in the transaction log, and that makes the log storage consumption to grow. There's also an automatic process that allows safe truncation of the transaction log, and this process reduces the used storage space for the log.
215+
In usual circumstances, transaction log is used for recording changes of the data within a database. Changes are recorded in the transaction log, and that makes the log storage consumption to grow. There's also an automatic process that allows safe truncation of the transaction log, and this process reduces the used storage space for the log.
216216
When publishing for Transactional Replication is configured, transaction log truncation is prevented until changes in the log are processed by the log reader job. In some circumstances, processing of the transaction log is effectively blocked, and that state can lead to filling up entire storage reserved for transaction log. When there's no free space for transaction log, and there's no more space for transaction log to grow, we have full transaction log. In this state, the database can no longer process any write workload, and effectively becomes read-only database.
217217

218218
#### Disabled log reader agent
219219

220-
Sometimes Transactional Replication publication is configured for a database, but log reader agent isn't configured to run. In that case, changes are accumulating in the transaction log, and they aren't being processed. This leads to constant growth of transactional log, and eventually to the full transcation log.
220+
Sometimes Transactional Replication publication is configured for a database, but log reader agent isn't configured to run. In that case, changes are accumulating in the transaction log, and they aren't being processed. This leads to constant growth of transactional log, and eventually to the full transaction log.
221221
User should make sure that log reader job exists and is active. Alternative would be to disable Transactional Replication, if it's not needed.
222222

223223
#### Log reader agent query timeouts

docs/connect/jdbc/using-bulk-copy-with-the-jdbc-driver.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -779,7 +779,7 @@ The `SQLServerBulkCopy` class can be used to write data only to SQL Server table
779779
| `boolean isTableLock()` | Indicates whether `SQLServerBulkCopy` should obtain a bulk update lock for the duration of the bulk copy operation. |
780780
| `void setTableLock(boolean tableLock)` | Sets whether `SQLServerBulkCopy` should obtain a bulk update lock for the duration of the bulk copy operation. |
781781
| `boolean isUseInternalTransaction()` | Indicates whether each batch of the bulk-copy operation will occur within a transaction. |
782-
| `void setUseInternalTranscation(boolean useInternalTransaction)` | Sets whether each batch of the bulk-copy operations will occur within a transaction or not. |
782+
| `void setUseInternalTransaction(boolean useInternalTransaction)` | Sets whether each batch of the bulk-copy operations will occur within a transaction or not. |
783783
| `int getBatchSize()` | Gets the number of rows in each batch. At the end of each batch, the rows in the batch are sent to the server. |
784784
| `void setBatchSize(int batchSize)` | Sets the number of rows in each batch. At the end of each batch, the rows in the batch are sent to the server. |
785785
| `int getBulkCopyTimeout()` | Gets the number of seconds for the operation to complete before it times out. |

0 commit comments

Comments
 (0)