Skip to content

Commit f2c846f

Browse files
authored
Merge pull request #22383 from MicrosoftDocs/FromPublicRepo
Confirm merge from FromPublicRepo to main to sync with https://github.com/MicrosoftDocs/sql-docs (branch live)
2 parents 04ccc51 + 16c6bc4 commit f2c846f

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

docs/relational-databases/security/ledger/ledger-how-to-migrate-data-to-ledger-tables.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ The stored procedure [sys.sp_copy_data_in_batches](/sql/relational-databases/sys
7272
In the script below, we're copying the data from the regular `Employees` table to the new updatable ledger table, `Employees_LedgerTable`.
7373

7474
```sql
75-
sp_copy_data_in_batches @source_table_name = N'Employees' , @targe_table_name = N'Employees_LedgerTable'
75+
sp_copy_data_in_batches @source_table_name = N'Employees' , @target_table_name = N'Employees_LedgerTable'
7676
```
7777

7878
## Next steps

docs/relational-databases/system-stored-procedures/sys-sp-copy-data-in-batches-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ For more information on database ledger, see [Ledger](/azure/azure-sql/database/
2828
## Syntax
2929

3030
```syntaxsql
31-
sp_copy_data_in_batches [@source_table_name = ] N'source_table_name' , [@targe_table_name = ] N'target_table_name'
31+
sp_copy_data_in_batches [@source_table_name = ] N'source_table_name' , [@target_table_name = ] N'target_table_name'
3232
```
3333

3434
## Arguments

docs/t-sql/database-console-commands/dbcc-freesystemcache-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ The following example illustrates how to clean caches that are dedicated to a sp
8282

8383
```sql
8484
-- Clean all the caches with entries specific to the resource pool named "default".
85-
DBCC FREESYSTEMCACHE ('ALL', default);
85+
DBCC FREESYSTEMCACHE ('ALL', [default]);
8686
```
8787

8888
### B. Releasing entries from their respective caches after they become unused

0 commit comments

Comments
 (0)