A company has an Azure SQL Database that is experiencing performance degradation during peak hours. The database is configured with the Standard tier (S2). Which action should you recommend to improve performance without changing the application code?
Trap 1: Enable Query Store and run the Performance Dashboard.
Only monitors performance, does not fix it.
Trap 2: Enable read scale-out to offload read queries.
Not applicable for Standard tier; only for Premium/Business Critical.
Trap 3: Create nonclustered indexes on all tables.
Requires application code changes and index design.
- A
Scale up the database to a higher service objective (e.g., S3).
Increases DTU limit, providing more resources.
- B
Enable Query Store and run the Performance Dashboard.
Why wrong: Only monitors performance, does not fix it.
- C
Enable read scale-out to offload read queries.
Why wrong: Not applicable for Standard tier; only for Premium/Business Critical.
- D
Create nonclustered indexes on all tables.
Why wrong: Requires application code changes and index design.