Skip to content

Commit 6b6ff02

Browse files
committed
Update ms.author
1 parent 8232ee4 commit 6b6ff02

4 files changed

Lines changed: 27 additions & 23 deletions

File tree

docs/connect/ado-net/appcontext-switches.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
---
22
title: AppContext switches in SqlClient
33
description: Learn about the AppContext switches available in SqlClient and how to use them to modify some default behaviors.
4-
ms.date: 05/28/2021
4+
ms.date: 06/01/2022
55
dev_langs:
66
- "csharp"
77
ms.prod: sql
88
ms.prod_service: connectivity
99
ms.technology: connectivity
1010
ms.topic: conceptual
11-
author: johnnypham
12-
ms.author: v-jopha
11+
author: David-Engel
12+
ms.author: v-davidengel
1313
ms.reviewer: v-davidengel
1414
---
1515
# AppContext switches in Sqlclient
@@ -27,6 +27,7 @@ Starting with Microsoft.Data.SqlClient 4.0, TLS 1.3 is not supported by the driv
2727
```csharp
2828
AppContext.SetSwitch("Switch.Microsoft.Data.SqlClient.UseSystemDefaultSecureProtocols", true);
2929
```
30+
3031
## Enabling decimal truncation behavior
3132

3233
[!INCLUDE [appliesto-netfx-netcore-netst-md](../../includes/appliesto-netfx-netcore-netst-md.md)]

docs/connect/ado-net/enable-eventsource-tracing.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
---
22
title: Enable event tracing in SqlClient
33
description: Describes how to enable event tracing or logging in SqlClient by implementing an event listener and how to access the event data.
4-
ms.date: 03/31/2022
4+
ms.date: 06/01/2022
55
dev_langs:
66
- "csharp"
77
ms.prod: sql
88
ms.prod_service: connectivity
99
ms.technology: connectivity
1010
ms.topic: conceptual
11-
author: johnnypham
12-
ms.author: v-jopha
11+
author: David-Engel
12+
ms.author: v-davidengel
1313
ms.reviewer: v-davidengel
1414
---
1515
# Enable event tracing in SqlClient
Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
---
2-
title: "Order hints for bulk copy operations"
3-
description: "Describes how to use order hints in bulk copy operations."
4-
ms.date: "06/15/2020"
2+
title: Order hints for bulk copy operations
3+
description: Describes how to use order hints in bulk copy operations.
4+
ms.date: 06/01/2022
55
dev_langs:
66
- "csharp"
77
ms.prod: sql
88
ms.prod_service: connectivity
99
ms.technology: connectivity
1010
ms.topic: conceptual
11-
author: johnnypham
12-
ms.author: v-jopha
11+
author: David-Engel
12+
ms.author: v-davidengel
1313
ms.reviewer: v-davidengel
1414
---
1515
# Order hints for bulk copy operations
@@ -22,11 +22,13 @@ Bulk copy operations offer significant performance advantages over other methods
2222

2323
By default, the bulk insert operation assumes the incoming data is unordered. SQL Server forces an intermediate sort of this data before bulk loading it. If you know your incoming data is already sorted, you can use order hints to tell the bulk copy operation about the sort order of any destination columns that are part of a clustered index.
2424

25-
## Adding order hints to a bulk copy operation
26-
The following example bulk copies data from a source table in the **AdventureWorks** sample database to a destination table in the same database.
25+
## Adding order hints to a bulk copy operation
26+
27+
The following example bulk copies data from a source table in the **AdventureWorks** sample database to a destination table in the same database.
2728
A SqlBulkCopyColumnOrderHint object is created to define the sort order for the **ProductNumber** column in the destination table. The order hint is then added to the SqlBulkCopy instance, which will append the appropriate order hint argument to the resulting `INSERT BULK` query.
2829

2930
[!code-csharp [SqlBulkCopy.ColumnOrderHint#1](~/../sqlclient/doc/samples/SqlBulkCopy_ColumnOrderHint.cs#1)]
3031

3132
## Next steps
33+
3234
- [Bulk copy operations in SQL Server](bulk-copy-operations-sql-server.md)

docs/connect/ado-net/sql/data-classification.md

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
---
2-
title: "Data discovery and classification in SqlClient"
3-
description: "Describes how to check if a SQL Server database supports data classification and how to access data classification information through a SqlDataReader object."
4-
ms.date: "11/23/2020"
2+
title: Data discovery and classification in SqlClient
3+
description: Describes how to check if a SQL Server database supports data classification and how to access data classification information through a SqlDataReader object.
4+
ms.date: 06/01/2022
55
dev_langs:
66
- "csharp"
77
ms.prod: sql
88
ms.prod_service: connectivity
99
ms.technology: connectivity
1010
ms.topic: conceptual
11-
author: johnnypham
12-
ms.author: v-jopha
11+
author: David-Engel
12+
ms.author: v-davidengel
1313
ms.reviewer: v-davidengel
1414
---
1515
# Data discovery and classification in SqlClient
@@ -22,6 +22,8 @@ ms.reviewer: v-davidengel
2222

2323
Microsoft.Data.SqlClient v2.1.0 introduces support for Data Classification's `Sensitivity Rank` information. `Sensitivity Rank` is an identifier based on a predefined set of values, which define sensitivity rank. It can be used by other services like Advanced Threat Protection to detect anomalies based on their rank. The following Data Classification APIs are now available in Microsoft.Data.SqlClient.DataClassification namespace:
2424

25+
## Code example
26+
2527
```csharp
2628
// New in Microsoft.Data.SqlClient v2.1.0
2729
public enum SensitivityRank
@@ -95,9 +97,8 @@ This sample application demonstrates how to access the Data Classification prope
9597

9698
[!code-csharp [SqlDataReader_DataDiscoveryAndClassification#1](~/../sqlclient/doc/samples/SqlDataReader_DataDiscoveryAndClassification.cs#1)]
9799

100+
## See also
98101

99-
**See also**
100-
101-
- [SQL Server features and ADO.NET](sql-server-features-adonet.md)
102-
- [sys.sensitivity_classifications (Transact-SQL)](../../../relational-databases/system-catalog-views/sys-sensitivity-classifications-transact-sql.md)
103-
- [ADD SENSITIVITY CLASSIFICATION](../../../t-sql/statements/add-sensitivity-classification-transact-sql.md)
102+
- [SQL Server features and ADO.NET](sql-server-features-adonet.md)
103+
- [sys.sensitivity_classifications (Transact-SQL)](../../../relational-databases/system-catalog-views/sys-sensitivity-classifications-transact-sql.md)
104+
- [ADD SENSITIVITY CLASSIFICATION](../../../t-sql/statements/add-sensitivity-classification-transact-sql.md)

0 commit comments

Comments
 (0)