Skip to content

Commit e94defb

Browse files
Merge pull request #53339 from Albertyang0/2026_02-Monthly-broken-links-fix-61
2026_02 - Fix monthly broken links
2 parents 954141b + 1adbf9d commit e94defb

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

learn-pr/wwl-azure/work-with-cosmos-db/includes/4-cosmos-db-stored-procedures.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Azure Cosmos DB provides language-integrated, transactional execution of JavaScript that lets you write **stored procedures**, **triggers**, and **user-defined functions (UDFs)**. To call a stored procedure, trigger, or user-defined function, you need to register it. For more information, see [How to work with stored procedures, triggers, user-defined functions in Azure Cosmos DB](/azure/cosmos-db/sql/how-to-use-stored-procedures-triggers-udfs).
1+
Azure Cosmos DB provides language-integrated, transactional execution of JavaScript that lets you write **stored procedures**, **triggers**, and **user-defined functions (UDFs)**. To call a stored procedure, trigger, or user-defined function, you need to register it. For more information, see [How to work with stored procedures, triggers, user-defined functions in Azure Cosmos DB](/azure/cosmos-db/how-to-use-stored-procedures-triggers-udfs).
22

33
> [!NOTE]
44
> This unit focuses on stored procedures, the following unit covers triggers and user-defined functions.

learn-pr/wwl-azure/work-with-cosmos-db/includes/5-cosmos-db-triggers-user-defined-functions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Azure Cosmos DB supports pretriggers and post-triggers. Pretriggers are executed before modifying a database item and post-triggers are executed after modifying a database item. Triggers aren't automatically executed. They must be specified for each database operation where you want them to execute. After you define a trigger, you should register it by using the Azure Cosmos DB SDKs.
22

3-
For examples of how to register and call a trigger, see [pretriggers](/azure/cosmos-db/sql/how-to-use-stored-procedures-triggers-udfs#pre-triggers) and [post-triggers](/azure/cosmos-db/sql/how-to-use-stored-procedures-triggers-udfs#post-triggers).
3+
For examples of how to register and call a trigger, see [pretriggers](/azure/cosmos-db/how-to-use-stored-procedures-triggers-udfs#pre-triggers) and [post-triggers](/azure/cosmos-db/how-to-use-stored-procedures-triggers-udfs#post-triggers).
44

55
## Pretriggers
66

@@ -29,7 +29,7 @@ Pretriggers can't have any input parameters. The request object in the trigger i
2929

3030
When triggers are registered, you can specify the operations that it can run with. This trigger should be created with a `TriggerOperation` value of `TriggerOperation.Create`, using the trigger in a replace operation isn't permitted.
3131

32-
For examples of how to register and call a pretrigger, visit the [pretriggers](/azure/cosmos-db/sql/how-to-use-stored-procedures-triggers-udfs#pre-triggers) article.
32+
For examples of how to register and call a pretrigger, visit the [pretriggers](/azure/cosmos-db/how-to-use-stored-procedures-triggers-udfs#pre-triggers) article.
3333

3434
## Post-triggers
3535

0 commit comments

Comments
 (0)