Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
Skip to content

Commit 6c8f59d

Browse files
authored
Merge pull request #1714 from sivey42/patch-3
fixed issues with code sample
2 parents d200681 + 9b1817e commit 6c8f59d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/t-sql/language-elements/reconfigure-transact-sql.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,10 @@ RECONFIGURE [ WITH OVERRIDE ]
5858
RECONFIGURE permissions default to grantees of the ALTER SETTINGS permission. The **sysadmin** and **serveradmin** fixed server roles implicitly hold this permission.
5959

6060
## Examples
61-
The following example sets the upper limit for the `recovery interval` configuration option to `75` minutes and uses `RECONFIGURE WITH OVERRIDE` to install it. Recovery intervals greater than 60 minutes are not recommended and disallowed by default. However, because the `WITH OVERRIDE` option is specified, [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] does not check whether the value specified (`90`) is a valid value for the `recovery interval` configuration option.
61+
The following example sets the upper limit for the `recovery interval` configuration option to `75` minutes and uses `RECONFIGURE WITH OVERRIDE` to install it. Recovery intervals greater than 60 minutes are not recommended and disallowed by default. However, because the `WITH OVERRIDE` option is specified, [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] does not check whether the value specified (`75`) is a valid value for the `recovery interval` configuration option.
6262

6363
```
64-
EXEC sp_configure 'recovery interval', 75'
64+
EXEC sp_configure 'recovery interval', 75
6565
RECONFIGURE WITH OVERRIDE;
6666
GO
6767
```

0 commit comments

Comments
 (0)