File tree Expand file tree Collapse file tree
tools/visual-studio-code-extensions/sql-database-projects 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' )
Original file line number Diff line number Diff line change @@ -51,8 +51,6 @@ Add database objects to your project using item templates from the Database Proj
5151
52521 . 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-
5654The extension creates a T-SQL file in your project with template code for the selected object type.
5755
5856> [ !NOTE]
You can’t perform that action at this time.
0 commit comments