Skip to content

Commit c67b152

Browse files
authored
Merge pull request #16199 from dksimpson/dks-us1750982-4
Duplicate-titles validation fixes pt 4
2 parents 4b4e9a9 + 158d7c9 commit c67b152

18 files changed

Lines changed: 29 additions & 29 deletions

docs/connect/oledb/ole-db-date-time/data-type-support-for-ole-db-date-and-time-improvements.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Data Type Support for OLE DB Date and Time Improvements | Microsoft Docs"
2+
title: "Data type support for date and time improvements (OLE DB driver) | Microsoft Docs"
33
description: "Data type support for OLE DB date and time improvements"
44
ms.custom: ""
55
ms.date: "06/14/2018"
@@ -69,7 +69,7 @@ ms.author: pelopes
6969

7070
Implementations for the following existing OLE DB structs have been modified to support the new [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] date and time data types. The definitions, however, have not changed.
7171

72-
- DBTYPE_DATE (This is an automation DATE type. It is internally represented as a **double**.. The whole part is the number of days since December 30, 1899 and the fractional part is the fraction of a day. This type has an accuracy of 1 second, so has an effective scale of 0.)
72+
- DBTYPE_DATE (This is an automation DATE type. It is internally represented as a **double**. The whole part is the number of days since December 30, 1899 and the fractional part is the fraction of a day. This type has an accuracy of 1 second, so has an effective scale of 0.)
7373

7474
- DBTYPE_DBDATE
7575

docs/connect/oledb/ole-db-driver/establishing-a-connection-to-a-data-source.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Establishing a Connection to a Data Source | Microsoft Docs"
2+
title: "Establish connection to data source (OLE DB driver) | Microsoft Docs"
33
description: "Establishing a connection to a data source using OLE DB Driver for SQL Server"
44
ms.custom: ""
55
ms.date: "06/14/2018"

docs/connect/oledb/ole-db-driver/executing-a-command.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Executing a Command | Microsoft Docs"
2+
title: "Executing a command (OLE DB driver) | Microsoft Docs"
33
description: "Executing a command"
44
ms.custom: ""
55
ms.date: "06/14/2018"

docs/connect/oledb/ole-db-how-to/enumerate-ole-db-data-sources-ole-db.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Enumerate OLE DB Data Sources (OLE DB) | Microsoft Docs"
2+
title: "Enumerate OLE DB data sources (OLE DB driver) | Microsoft Docs"
33
description: "Enumerate OLE DB data sources using MSOLEDBSQL enumerator"
44
ms.custom: ""
55
ms.date: "06/14/2018"
@@ -46,7 +46,7 @@ ms.author: pelopes
4646
6. Retrieve data from the rowset's copy of the row by calling **IRowset::GetData**, and process it.
4747

4848
## Example
49-
Compile with ole32.lib and execute the following C++ code listing. This application connects to your computer's default [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] instance. On some Windows operating systems, you will need to change (localhost) or (local) to the name of your [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] instance. To connect to a named instance, change the connection string from L"(local)" to L"(local)\\\name" , where name is the named instance. By default, [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] Express installs to a named instance. Make sure your INCLUDE environment variable includes the directory that contains msoledbsql.h.
49+
Compile with ole32.lib and execute the following C++ code listing. This application connects to your computer's default [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] instance. On some Windows operating systems, you will need to change (localhost) or (local) to the name of your [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] instance. To connect to a named instance, change the connection string from L"(local)" to L"(local)\\\name", where name is the named instance. By default, [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] Express installs to a named instance. Make sure your INCLUDE environment variable includes the directory that contains msoledbsql.h.
5050

5151
```
5252
// compile with: ole32.lib

docs/connect/oledb/ole-db-how-to/fetch-columns-using-irow-getcolumns-ole-db.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Fetch Columns Using IRow::GetColumns (OLE DB) | Microsoft Docs"
2+
title: "Fetch columns using IRow::GetColumns (OLE DB driver) | Microsoft Docs"
33
description: "Fetch columns using IRow::GetColumns (OLE DB)"
44
ms.custom: ""
55
ms.date: "06/14/2018"
@@ -20,7 +20,7 @@ ms.author: pelopes
2020

2121
The **IRow** interface allows direct access to columns of a single row in the result set. Thus, **IRow** is an efficient way to retrieve columns from a result set with one row.
2222

23-
A code sample is available that showshow to fetch a single row using **IRow**. In this sample, one column at a time is retrieved from the row. The sample shows:
23+
A code sample is available that shows how to fetch a single row using **IRow**. In this sample, one column at a time is retrieved from the row. The sample shows:
2424

2525
- How to fetch a group of columns (in sequence).
2626

@@ -52,7 +52,7 @@ ms.author: pelopes
5252

5353
The first ([!INCLUDE[tsql](../../../includes/tsql-md.md)]) code listing creates a table used by the sample.
5454

55-
Compile with ole32.lib oleaut32.lib and execute the second (C++) code listing. This application connects to your computer's default [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] instance. On some Windows operating systems, you will need to change (localhost) or (local) to the name of your [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] instance. To connect to a named instance, change the connection string from L"(local)" to L"(local)\\\name" , where name is the named instance. By default, [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] Express installs to a named instance. Make sure your INCLUDE environment variable includes the directory that contains msoledbsql.h.
55+
Compile with ole32.lib oleaut32.lib and execute the second (C++) code listing. This application connects to your computer's default [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] instance. On some Windows operating systems, you will need to change (localhost) or (local) to the name of your [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] instance. To connect to a named instance, change the connection string from L"(local)" to L"(local)\\\name", where name is the named instance. By default, [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] Express installs to a named instance. Make sure your INCLUDE environment variable includes the directory that contains msoledbsql.h.
5656

5757
The third ([!INCLUDE[tsql](../../../includes/tsql-md.md)]) code listing deletes the table used by the sample.
5858

docs/connect/oledb/ole-db-rowsets/fetching-a-single-row-with-irow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Fetching a Single Row with IRow | Microsoft Docs"
2+
title: "Fetch single row with IRow (OLE DB driver) | Microsoft Docs"
33
description: "Fetching a single row using IRow interface of OLE DB Driver for SQL Server"
44
ms.custom: ""
55
ms.date: "06/14/2018"

docs/connect/oledb/ole-db-tables-indexes/dropping-a-sql-server-index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Dropping a SQL Server Index | Microsoft Docs"
2+
title: "Drop SQL Server index (OLE DB driver) | Microsoft Docs"
33
description: "Dropping a sql server index using OLE DB Driver for SQL Server"
44
ms.custom: ""
55
ms.date: "06/14/2018"

docs/connect/oledb/ole-db-tables-indexes/dropping-a-sql-server-table.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Dropping a SQL Server Table | Microsoft Docs"
2+
title: "Drop SQL Server table (OLE DB driver) | Microsoft Docs"
33
description: "Dropping a SQL Server table using OLE DB Driver for SQL Server"
44
ms.custom: ""
55
ms.date: "06/14/2018"

docs/database-engine/deprecated-database-engine-features-in-sql-server-2017.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Deprecated Database Engine Features | Microsoft Docs"
2+
title: "Deprecated database engine features in SQL Server 2017 | Microsoft Docs"
33
titleSuffix: "SQL Server 2019"
44
description: Find out about deprecated database engine features that are still available in SQL Server 2017 (14.x), but shouldn't be used in new applications.
55
ms.custom: "seo-lt-2019"
@@ -32,7 +32,7 @@ When a feature is marked deprecated, it means:\
3232

3333
You can monitor the use of deprecated features by using the [!INCLUDE[ssNoVersion](../includes/ssnoversion-md.md)] Deprecated Features Object performance counter and trace events. For more information, see [Use SQL Server Objects](../relational-databases/performance-monitor/use-sql-server-objects.md).
3434

35-
The value of these counters are also available by executing the following statement:
35+
The values of these counters are also available by executing the following statement:
3636

3737
```sql
3838
SELECT * FROM sys.dm_os_performance_counters
@@ -121,7 +121,7 @@ The following SQL Server Database Engine features are supported in the next vers
121121
| **timestamp** syntax for **rowversion** data type | **rowversion** data type syntax | TIMESTAMP |
122122
| Ability to insert null values into **timestamp** columns. | Use a DEFAULT instead. | INSERT NULL into TIMESTAMP columns |
123123
| 'text in row' table option|Use **varchar(max)**, **nvarchar(max)**, and **varbinary(max)** data types. For more information, see [sp_tableoption (Transact-SQL)](../relational-databases/system-stored-procedures/sp-tableoption-transact-sql.md).|Text in row table option |
124-
| Data types:<br /><br /> **text**<br /><br /> **ntext**<br /><br /> **image**|Use **varchar(max)**, **nvarchar(max)**, and **varbinary(max)** data types.|Data types: **text**, **ntext** or **image** |
124+
| Data types:<br /><br /> **text**<br /><br /> **ntext**<br /><br /> **image**|Use **varchar(max)**, **nvarchar(max)**, and **varbinary(max)** data types.|Data types: **text**, **ntext**, or **image** |
125125

126126
### Database management
127127

docs/database-engine/deprecated-database-engine-features-in-sql-server-version-15.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Deprecated Database Engine Features | Microsoft Docs"
2+
title: "Deprecated database engine features in SQL Server 2019 | Microsoft Docs"
33
titleSuffix: "SQL Server 2019"
44
ms.custom: "seo-lt-2019"
55
ms.date: "12/13/2019"

0 commit comments

Comments
 (0)