Skip to content

Commit 9c9346f

Browse files
authored
Clarify linked server name in examples (#10289)
* Clarify linked server name in examples
1 parent 84711bb commit 9c9346f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/t-sql/functions/openquery-transact-sql.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
6363
UPDATE OPENQUERY (OracleSvr, 'SELECT name FROM joe.titles WHERE id = 101')
6464
SET 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
7171
INSERT OPENQUERY (OracleSvr, 'SELECT name FROM joe.titles')

0 commit comments

Comments
 (0)