Skip to content

Commit a3dfa05

Browse files
authored
Merge pull request #20381 from MicrosoftDocs/FromPublicRepo
Confirm merge from FromPublicRepo to master to sync with https://github.com/MicrosoftDocs/sql-docs (branch live)
2 parents 797f69a + 8724906 commit a3dfa05

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

docs/machine-learning/install/includes/custom-runtime-r-windows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ Follow these steps to download and register the R language extension, which is u
139139
CREATE EXTERNAL LANGUAGE [myR]
140140
FROM (CONTENT = N'C:\path\to\R-lang-extension-windows-release.zip',
141141
FILE_NAME = 'libRExtension.dll',
142-
ENVIRONMENT_VARIABLES = N'{"R_HOME": "C:\\Program Files\\R\\R-4.0.3"}'););
142+
ENVIRONMENT_VARIABLES = N'{"R_HOME": "C:\\Program Files\\R\\R-4.0.3"}');
143143
GO
144144
```
145145

docs/relational-databases/backup-restore/restore-and-recovery-overview-sql-server.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ ms.author: chadam
3838

3939
- The data page (a *page restore*)
4040

41-
Under the full recovery model or bulk-logged recovery model, you can restore individual databases. Page restores can be performed on any database, regardless of the number of filegroups.
41+
Under the full recovery model or bulk-logged recovery model, you can restore individual pages. Page restores can be performed on any database, regardless of the number of filegroups.
4242

4343
[!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] backup and restore work across all supported operating systems. For information about the supported operating systems, see [Hardware and Software Requirements for Installing SQL Server 2016](../../sql-server/install/hardware-and-software-requirements-for-installing-sql-server.md). For information about support for backups from earlier versions of [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)], see the "Compatibility Support" section of [RESTORE (Transact-SQL)](../../t-sql/statements/restore-statements-transact-sql.md).
4444

@@ -189,4 +189,4 @@ ALTER DATABASE [<db_name>] SET ACCELERATED_DATABASE_RECOVERY = ON;
189189
[The Transaction Log &#40;SQL Server&#41;](../../relational-databases/logs/the-transaction-log-sql-server.md)
190190
[SQL Server Transaction Log Architecture and Management Guide](../../relational-databases/sql-server-transaction-log-architecture-and-management-guide.md)
191191
[Back Up and Restore of SQL Server Databases](../../relational-databases/backup-restore/back-up-and-restore-of-sql-server-databases.md)
192-
[Apply Transaction Log Backups (SQL Server)](../../relational-databases/backup-restore/apply-transaction-log-backups-sql-server.md)
192+
[Apply Transaction Log Backups (SQL Server)](../../relational-databases/backup-restore/apply-transaction-log-backups-sql-server.md)

docs/relational-databases/system-catalog-views/sys-database-scoped-configurations-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Contains one row per configuration.
3434
|**name**|**nvarchar(60)**|The name of the configuration option. For information about the possible configurations, see [ALTER DATABASE SCOPED CONFIGURATION &#40;Transact-SQL&#41;](../../t-sql/statements/alter-database-scoped-configuration-transact-sql.md).|
3535
|**value**|**sqlvariant**|The value set for this configuration option for the primary replica.|
3636
|**value_for_secondary**|**sqlvariant**|The value set for this configuration option for the secondary replicas.|
37-
|**is_value_default**|**bit** |Specifies whether the value set is the default value.|
37+
|**is_value_default**|**bit** |Specifies whether the value set is the default value. Added in SQL Server 2017.|
3838

3939
## <a name="Permissions"></a> Permissions
4040

docs/t-sql/functions/isdate-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ monikerRange: ">=aps-pdw-2016||=azuresqldb-current||=azure-sqldw-latest||>=sql-s
3838

3939
[!INCLUDE [sql-asdb-asdbmi-asa-pdw](../../includes/applies-to-version/sql-asdb-asdbmi-asa-pdw.md)]
4040

41-
Returns 1 if the *expression* is a valid **date**, **time**, or **datetime** value; otherwise, 0.
41+
Returns 1 if the *expression* is a valid **datetime** value; otherwise, 0.
4242

4343
ISDATE returns 0 if the *expression* is a **datetime2** value.
4444

docs/t-sql/functions/system-user-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ Territory_id Rep_id Last_sale SRep_tracking_user
128128

129129
## Examples: [!INCLUDE[ssSDWfull](../../includes/sssdwfull-md.md)] and [!INCLUDE[ssPDW](../../includes/sspdw-md.md)]
130130

131-
### C: Using SYSTEM_USER to return the current system user name
131+
### C. Using SYSTEM_USER to return the current system user name
132132
The following example returns the current value of `SYSTEM_USER`.
133133

134134
```sql

0 commit comments

Comments
 (0)