Skip to content

Commit 0aa1177

Browse files
Merge pull request #23874 from MicrosoftDocs/MikeRayMSFT-patch-1
Update parameters
2 parents a188498 + bf51774 commit 0aa1177

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/relational-databases/integrated-acceleration/intel-quickassist.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,14 +141,14 @@ No restart of SQL Server is required for this change to take effect.
141141
The 'configure backup compression algorithm' configuration sets the default compression algorithm. To set Intel® QAT as the default compression algorithm for SQL Server, use the following script:
142142

143143
```sql
144-
EXEC sp_configure 'backup compression algorithm', 'QAT_DEFLATE';
144+
EXEC sp_configure 'backup compression algorithm', 2;
145145
RECONFIGURE;
146146
```
147147

148148
To change the default compression algorithm back to the default, use the following script:
149149

150150
```sql
151-
EXEC sp_configure 'backup compression algorithm', 'MS_XPRESS';
151+
EXEC sp_configure 'backup compression algorithm', 1;
152152
RECONFIGURE;
153153
```
154154

@@ -186,4 +186,4 @@ You can view the compression algorithm and history of all SQL Server backup and
186186
- [Hardware offload enabled configuration option](../../database-engine/configure-windows/hardware-offload-enable-configuration-option.md)
187187
- [ALTER SERVER CONFIGURATION (Transact-SQL)](../../t-sql/statements/alter-server-configuration-transact-sql.md)
188188
- [BACKUP COMPRESSION (Transact-SQL)](../../t-sql/statements/backup-transact-sql.md#compression)
189-
- [RESTORE Statements (Transact-SQL)](../../t-sql/statements/restore-statements-transact-sql.md)
189+
- [RESTORE Statements (Transact-SQL)](../../t-sql/statements/restore-statements-transact-sql.md)

0 commit comments

Comments
 (0)