Skip to content

Commit 3f1f95a

Browse files
authored
Change file map link to absolute path to retire filemap_share_depots (#713)
1 parent 9519efa commit 3f1f95a

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

doc/snippets/Microsoft.Data.SqlClient/SqlBulkCopyColumnOrderHint.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ The following example bulk copies data from a source table in the **AdventureWor
3131
A SqlBulkCopyColumnOrderHint object is used to define the sort order for the ProductNumber destination column.
3232
3333
> [!IMPORTANT]
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).
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).
3535
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
3636
Transact-SQL `INSERT … SELECT` statement to copy the data.
3737
@@ -58,7 +58,7 @@ The following example bulk copies data from a source table in the **AdventureWor
5858
A SqlBulkCopyColumnOrderHint object is used to define the sort order for the ProductNumber destination column.
5959
6060
> [!IMPORTANT]
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).
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).
6262
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
6363
Transact-SQL `INSERT … SELECT` statement to copy the data.
6464
@@ -88,7 +88,7 @@ The following example bulk copies data from a source table in the **AdventureWor
8888
A SqlBulkCopyColumnOrderHint object is used to define the sort order for the ProductNumber destination column.
8989
9090
> [!IMPORTANT]
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).
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).
9292
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
9393
Transact-SQL `INSERT … SELECT` statement to copy the data.
9494
@@ -118,7 +118,7 @@ The following example bulk copies data from a source table in the **AdventureWor
118118
A SqlBulkCopyColumnOrderHint object is used to define the sort order for the ProductNumber destination column.
119119
120120
> [!IMPORTANT]
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).
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).
122122
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
123123
Transact-SQL `INSERT … SELECT` statement to copy the data.
124124

doc/snippets/Microsoft.Data.SqlClient/SqlBulkCopyColumnOrderHintCollection.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The following example bulk copies data from a source table in the **AdventureWor
2929
<xref:Microsoft.Data.SqlClient.SqlBulkCopy> object to specify order hints for the bulk copy operation.
3030
3131
> [!IMPORTANT]
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).
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).
3333
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
3434
use a Transact-SQL `INSERT … SELECT` statement to copy the data.
3535
@@ -51,7 +51,7 @@ The following example bulk copies data from a source table in the **AdventureWor
5151
A SqlBulkCopyColumnOrderHint object is used to define the sort order for the **ProductNumber** destination column.
5252
5353
> [!IMPORTANT]
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).
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).
5555
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,
5656
it is easier and faster to use a Transact-SQL `INSERT … SELECT` statement to copy the data.
5757
@@ -78,7 +78,7 @@ The following example bulk copies data from a source table in the **AdventureWor
7878
A SqlBulkCopyColumnOrderHint object is added to the <xref:Microsoft.Data.SqlClient.SqlBulkCopy.ColumnOrderHints> by providing the destination column name and its sort order.
7979
8080
> [!IMPORTANT]
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).
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).
8282
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
8383
Transact-SQL `INSERT … SELECT` statement to copy the data.
8484
@@ -107,7 +107,7 @@ The example defines a column order hint for each bulk copy operation.
107107
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.
108108
109109
> [!IMPORTANT]
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).
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).
111111
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
112112
Transact-SQL `INSERT … SELECT` statement to copy the data.
113113
@@ -176,7 +176,7 @@ The following example performs two bulk copy operations. The first operation cop
176176
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.
177177
178178
> [!IMPORTANT]
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).
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).
180180
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
181181
Transact-SQL `INSERT … SELECT` statement to copy the data.
182182
@@ -208,7 +208,7 @@ The following example performs two bulk copy operations. The first operation cop
208208
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.
209209
210210
> [!IMPORTANT]
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).
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).
212212
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
213213
Transact-SQL `INSERT … SELECT` statement to copy the data.
214214

0 commit comments

Comments
 (0)