You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/snippets/Microsoft.Data.SqlClient/SqlBulkCopyColumnOrderHint.xml
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ The following example bulk copies data from a source table in the **AdventureWor
31
31
A SqlBulkCopyColumnOrderHint object is used to define the sort order for the ProductNumber destination column.
32
32
33
33
> [!IMPORTANT]
34
-
> This sample will not run unless you have created the work tables as described in [Bulk Copy Example Setup](/dotnet/framework/data/adonet/sql/bulk-copy-example-setup).
34
+
> This sample will not run unless you have created the work tables as described in [Bulk Copy Example Setup](~/docs/framework/data/adonet/sql/bulk-copy-example-setup.md).
35
35
This code is provided to demonstrate the syntax for using **SqlBulkCopy** only. If the source and destination tables are in the same SQL Server instance, it is easier and faster to use a
36
36
Transact-SQL `INSERT … SELECT` statement to copy the data.
37
37
@@ -58,7 +58,7 @@ The following example bulk copies data from a source table in the **AdventureWor
58
58
A SqlBulkCopyColumnOrderHint object is used to define the sort order for the ProductNumber destination column.
59
59
60
60
> [!IMPORTANT]
61
-
> This sample will not run unless you have created the work tables as described in [Bulk Copy Example Setup](/dotnet/framework/data/adonet/sql/bulk-copy-example-setup).
61
+
> This sample will not run unless you have created the work tables as described in [Bulk Copy Example Setup](~/docs/framework/data/adonet/sql/bulk-copy-example-setup.md).
62
62
This code is provided to demonstrate the syntax for using **SqlBulkCopy** only. If the source and destination tables are in the same SQL Server instance, it is easier and faster to use a
63
63
Transact-SQL `INSERT … SELECT` statement to copy the data.
64
64
@@ -88,7 +88,7 @@ The following example bulk copies data from a source table in the **AdventureWor
88
88
A SqlBulkCopyColumnOrderHint object is used to define the sort order for the ProductNumber destination column.
89
89
90
90
> [!IMPORTANT]
91
-
> This sample will not run unless you have created the work tables as described in [Bulk Copy Example Setup](/dotnet/framework/data/adonet/sql/bulk-copy-example-setup).
91
+
> This sample will not run unless you have created the work tables as described in [Bulk Copy Example Setup](~/docs/framework/data/adonet/sql/bulk-copy-example-setup.md).
92
92
This code is provided to demonstrate the syntax for using **SqlBulkCopy** only. If the source and destination tables are in the same SQL Server instance, it is easier and faster to use a
93
93
Transact-SQL `INSERT … SELECT` statement to copy the data.
94
94
@@ -118,7 +118,7 @@ The following example bulk copies data from a source table in the **AdventureWor
118
118
A SqlBulkCopyColumnOrderHint object is used to define the sort order for the ProductNumber destination column.
119
119
120
120
> [!IMPORTANT]
121
-
> This sample will not run unless you have created the work tables as described in [Bulk Copy Example Setup](/dotnet/framework/data/adonet/sql/bulk-copy-example-setup).
121
+
> This sample will not run unless you have created the work tables as described in [Bulk Copy Example Setup](~/docs/framework/data/adonet/sql/bulk-copy-example-setup.md).
122
122
This code is provided to demonstrate the syntax for using **SqlBulkCopy** only. If the source and destination tables are in the same SQL Server instance, it is easier and faster to use a
123
123
Transact-SQL `INSERT … SELECT` statement to copy the data.
Copy file name to clipboardExpand all lines: doc/snippets/Microsoft.Data.SqlClient/SqlBulkCopyColumnOrderHintCollection.xml
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ The following example bulk copies data from a source table in the **AdventureWor
29
29
<xref:Microsoft.Data.SqlClient.SqlBulkCopy> object to specify order hints for the bulk copy operation.
30
30
31
31
> [!IMPORTANT]
32
-
> This sample will not run unless you have created the work tables as described in [Bulk Copy Example Setup](/dotnet/framework/data/adonet/sql/bulk-copy-example-setup).
32
+
> This sample will not run unless you have created the work tables as described in [Bulk Copy Example Setup](~/docs/framework/data/adonet/sql/bulk-copy-example-setup.md).
33
33
This code is provided to demonstrate the syntax for using **SqlBulkCopy** only. If the source and destination tables are in the same SQL Server instance, it is easier and faster to
34
34
use a Transact-SQL `INSERT … SELECT` statement to copy the data.
35
35
@@ -51,7 +51,7 @@ The following example bulk copies data from a source table in the **AdventureWor
51
51
A SqlBulkCopyColumnOrderHint object is used to define the sort order for the **ProductNumber** destination column.
52
52
53
53
> [!IMPORTANT]
54
-
> This sample will not run unless you have created the work tables as described in [Bulk Copy Example Setup](/dotnet/framework/data/adonet/sql/bulk-copy-example-setup).
54
+
> This sample will not run unless you have created the work tables as described in [Bulk Copy Example Setup](~/docs/framework/data/adonet/sql/bulk-copy-example-setup.md).
55
55
This code is provided to demonstrate the syntax for using **SqlBulkCopy** only. If the source and destination tables are in the same SQL Server instance,
56
56
it is easier and faster to use a Transact-SQL `INSERT … SELECT` statement to copy the data.
57
57
@@ -78,7 +78,7 @@ The following example bulk copies data from a source table in the **AdventureWor
78
78
A SqlBulkCopyColumnOrderHint object is added to the <xref:Microsoft.Data.SqlClient.SqlBulkCopy.ColumnOrderHints> by providing the destination column name and its sort order.
79
79
80
80
> [!IMPORTANT]
81
-
> This sample will not run unless you have created the work tables as described in [Bulk Copy Example Setup](/dotnet/framework/data/adonet/sql/bulk-copy-example-setup).
81
+
> This sample will not run unless you have created the work tables as described in [Bulk Copy Example Setup](~/docs/framework/data/adonet/sql/bulk-copy-example-setup.md).
82
82
This code is provided to demonstrate the syntax for using **SqlBulkCopy** only. If the source and destination tables are in the same SQL Server instance, it is easier and faster to use a
83
83
Transact-SQL `INSERT … SELECT` statement to copy the data.
84
84
@@ -107,7 +107,7 @@ The example defines a column order hint for each bulk copy operation.
107
107
The <xref:Microsoft.Data.SqlClient.SqlBulkCopyColumnOrderHintCollection.Clear> method must be used after the first bulk copy is performed and before the next bulk copy's order hint is defined.
108
108
109
109
> [!IMPORTANT]
110
-
> This sample will not run unless you have created the work tables as described in [Bulk Copy Example Setup](/dotnet/framework/data/adonet/sql/bulk-copy-example-setup).
110
+
> This sample will not run unless you have created the work tables as described in [Bulk Copy Example Setup](~/docs/framework/data/adonet/sql/bulk-copy-example-setup.md).
111
111
This code is provided to demonstrate the syntax for using **SqlBulkCopy** only. If the source and destination tables are in the same SQL Server instance, it is easier and faster to use a
112
112
Transact-SQL `INSERT … SELECT` statement to copy the data.
113
113
@@ -176,7 +176,7 @@ The following example performs two bulk copy operations. The first operation cop
176
176
The example defines a column order hint for the **OrderDate** column in the first bulk copy operation. The hint is removed before the second bulk copy operation.
177
177
178
178
> [!IMPORTANT]
179
-
> This sample will not run unless you have created the work tables as described in [Bulk Copy Example Setup](/dotnet/framework/data/adonet/sql/bulk-copy-example-setup).
179
+
> This sample will not run unless you have created the work tables as described in [Bulk Copy Example Setup](~/docs/framework/data/adonet/sql/bulk-copy-example-setup.md).
180
180
This code is provided to demonstrate the syntax for using **SqlBulkCopy** only. If the source and destination tables are in the same SQL Server instance, it is easier and faster to use a
181
181
Transact-SQL `INSERT … SELECT` statement to copy the data.
182
182
@@ -208,7 +208,7 @@ The following example performs two bulk copy operations. The first operation cop
208
208
The example defines a column order hint for the **OrderDate** column in the first bulk copy operation. The hint is removed before the second bulk copy operation.
209
209
210
210
> [!IMPORTANT]
211
-
> This sample will not run unless you have created the work tables as described in [Bulk Copy Example Setup](/dotnet/framework/data/adonet/sql/bulk-copy-example-setup).
211
+
> This sample will not run unless you have created the work tables as described in [Bulk Copy Example Setup](~/docs/framework/data/adonet/sql/bulk-copy-example-setup.md).
212
212
This code is provided to demonstrate the syntax for using **SqlBulkCopy** only. If the source and destination tables are in the same SQL Server instance, it is easier and faster to use a
213
213
Transact-SQL `INSERT … SELECT` statement to copy the data.
0 commit comments