Skip to content

Commit 1ec126f

Browse files
Merge pull request #36750 from MicrosoftDocs/FromPublicRepo
Confirm merge from FromPublicRepo to main to sync with https://github.com/MicrosoftDocs/sql-docs (branch live)
2 parents a7c05b3 + 9c9346f commit 1ec126f

2 files changed

Lines changed: 2 additions & 4 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')

docs/tools/visual-studio-code-extensions/sql-database-projects/add-item-templates.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,6 @@ Add database objects to your project using item templates from the Database Proj
5151

5252
1. Enter a name for the new object.
5353

54-
::: image type="content" source="media/add-item-templates/add-item-menu.png" alt-text="Screenshot of context menu showing Add Item option." lightbox="media/add-item-templates/add-item-menu.png":::
55-
5654
The extension creates a T-SQL file in your project with template code for the selected object type.
5755

5856
> [!NOTE]

0 commit comments

Comments
 (0)