Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
Skip to content

Commit e3925d0

Browse files
authored
Merge pull request #14084 from WilliamAntonRohm/issue-4307
sql-docs issues 4307 & 4308 -- clarify two Syntax headings & remove extraneous words
2 parents 1ea6f47 + ffecceb commit e3925d0

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/t-sql/statements/create-trigger-transact-sql.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Logon triggers fire in response to the LOGON event that's raised when a user's s
4848
4949
![Topic link icon](../../database-engine/configure-windows/media/topic-link.gif "Topic link icon") [Transact-SQL Syntax Conventions](../../t-sql/language-elements/transact-sql-syntax-conventions-transact-sql.md)
5050

51-
## Syntax
51+
## SQL Server Syntax
5252

5353
```
5454
-- SQL Server Syntax
@@ -122,7 +122,7 @@ AS { sql_statement [ ; ] [ ,...n ] | EXTERNAL NAME < method specifier > [ ; ]
122122
123123
```
124124

125-
## Syntax
125+
## Azure SQL Database Syntax
126126

127127
```
128128
-- Azure SQL Database Syntax
@@ -210,7 +210,7 @@ Specifies that the DML trigger launches *instead of* the triggering SQL statemen
210210

211211
At most, you can define one INSTEAD OF trigger per INSERT, UPDATE, or DELETE statement on a table or view. You can also define views on views where each view has its own INSTEAD OF trigger.
212212

213-
You can't define INSTEAD OF triggers on updatable views that use WITH CHECK OPTION. [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] Doing so results in an error when an INSTEAD OF trigger is added to an updatable view WITH CHECK OPTION specified. You remove that option by using ALTER VIEW before defining the INSTEAD OF trigger.
213+
You can't define INSTEAD OF triggers on updatable views that use WITH CHECK OPTION. Doing so results in an error when an INSTEAD OF trigger is added to an updatable view WITH CHECK OPTION specified. You remove that option by using ALTER VIEW before defining the INSTEAD OF trigger.
214214

215215
{ [ DELETE ] [ , ] [ INSERT ] [ , ] [ UPDATE ] }
216216
Specifies the data modification statements that activate the DML trigger when it's tried against this table or view. Specify at least one option. Use any combination of these options in any order in the trigger definition.

0 commit comments

Comments
 (0)