Skip to content

Commit a13d397

Browse files
Merge pull request #54236 from PhilKang0704/2026_4-Monthly-broken-links-fix-pk-808
2026_4-Monthly-broken-links-fix-pk-808
2 parents 2238cf1 + 0ece4cc commit a13d397

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

learn-pr/wwl-data-ai/integrate-sql-solutions-azure-services/includes/10-summary.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ In this module, you learned how to:
2020

2121
- [Data API Builder documentation](/azure/data-api-builder/?azure-portal=true)
2222
- [Data API Builder configuration reference](/azure/data-api-builder/reference-configuration?azure-portal=true)
23-
- [Deploy Data API Builder to Azure Container Apps](/azure/data-api-builder/deployment/how-to-host-container-apps?azure-portal=true)
23+
- [Deploy Data API Builder to Azure Container Apps](/azure/data-api-builder/deployment/azure-container-apps)
2424
- [Azure Functions SQL trigger binding](/azure/azure-functions/functions-bindings-azure-sql-trigger?azure-portal=true)
2525
- [Change Data Capture in SQL Server](/sql/relational-databases/track-changes/about-change-data-capture-sql-server?azure-portal=true)
2626
- [Application Insights overview](/azure/azure-monitor/app/app-insights-overview?azure-portal=true)

learn-pr/wwl-data-ai/integrate-sql-solutions-azure-services/includes/3-define-entities-rest-graphql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ With these mappings, clients see `id`, `name`, `price`, and `stockQuantity` in t
7676
7777
## Enable caching for improved performance
7878

79-
[Data API Builder caching](/azure/data-api-builder/caching?azure-portal=true) reduces database load by storing query results temporarily. You can configure caching at both the global level (in the runtime section) and per-entity for fine-grained control.
79+
[Data API Builder caching](/azure/data-api-builder/concept/cache/level-1) reduces database load by storing query results temporarily. You can configure caching at both the global level (in the runtime section) and per-entity for fine-grained control.
8080

8181
```json
8282
"Product": {

learn-pr/wwl-data-ai/integrate-sql-solutions-azure-services/includes/4-expose-database-objects-stored-procedures-views.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Setting `operation` to `query` in the GraphQL section indicates this entity supp
6060
6161
## Configure stored procedures for custom operations
6262

63-
[Stored procedures](/azure/data-api-builder/stored-procedures?azure-portal=true) provide the most flexibility for custom database operations. They can accept parameters, perform complex logic, and return multiple result sets.
63+
[Stored procedures](/azure/data-api-builder/concept/rest/stored-procedures) provide the most flexibility for custom database operations. They can accept parameters, perform complex logic, and return multiple result sets.
6464

6565
```sql
6666
CREATE PROCEDURE dbo.GetProductsByPriceRange

learn-pr/wwl-data-ai/integrate-sql-solutions-azure-services/includes/7-handle-changes-event-driven-patterns.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ SQL platforms offer multiple approaches for tracking data changes, each suited t
1010

1111
- [Change Tracking](/sql/relational-databases/track-changes/about-change-tracking-sql-server?azure-portal=true) provides a lighter-weight alternative that records which rows changed without capturing the actual values. Applications query change information to determine what data needs synchronization.
1212

13-
- [Change Event Streaming (CES)](/sql/relational-databases/track-changes/about-change-event-streaming-sql-server?azure-portal=true) is a newer feature that pushes changes to event streams without polling. It integrates directly with Azure Event Hubs for high-throughput scenarios.
13+
- [Change Event Streaming (CES)](/sql/relational-databases/track-changes/change-event-streaming/overview) is a newer feature that pushes changes to event streams without polling. It integrates directly with Azure Event Hubs for high-throughput scenarios.
1414

1515
| Feature | CDC | Change Tracking | CES |
1616
|---------|-----|-----------------|-----|

0 commit comments

Comments
 (0)