File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -57,15 +57,15 @@ EXEC SeattleSales.master.dbo.xp_msver
5757## Examples
5858
5959### A. Executing an UPDATE pass-through query
60- The following example uses a pass-through ` UPDATE ` query against the linked server created in example A .
60+ The following example uses a pass-through ` UPDATE ` query against the linked server named ` OracleSvr ` .
6161
6262``` sql
6363UPDATE OPENQUERY (OracleSvr, ' SELECT name FROM joe.titles WHERE id = 101' )
6464SET name = ' ADifferentName' ;
6565```
6666
6767### B. Executing an INSERT pass-through query
68- The following example uses a pass-through ` INSERT ` query against the linked server created in example A .
68+ The following example uses a pass-through ` INSERT ` query against the linked server named ` OracleSvr ` .
6969
7070``` sql
7171INSERT OPENQUERY (OracleSvr, ' SELECT name FROM joe.titles' )
You can’t perform that action at this time.
0 commit comments