An international logistics company is designing the data tier for a new transport management platform. The platform consists of two distinct subsystems:
* The tracking subsystem requires a database that supports cross-database queries, SQL Server Agent for scheduling route calculation jobs, and Common Language Runtime (CLR) integration. The solution must minimize operational overhead.
* The invoicing subsystem requires a single database that experiences highly variable traffic patterns, including long periods of zero activity. The solution must minimize compute costs during idle periods.
Which two Azure SQL services should you recommend to support the subsystems? (Select TWO).
- Azure SQL Managed Instance for the tracking subsystemCevap
- Azure SQL Database serverless for the invoicing subsystemCevap
- CSQL Server on Azure Virtual Machines for the tracking subsystem
- DAzure SQL Database Elastic Pools for the invoicing subsystem
- EAzure SQL Database (single database) with provisioned compute for the tracking subsystem
Cevap
Azure SQL Managed Instance for the tracking subsystem, and Azure SQL Database serverless for the invoicing subsystem
The correct recommendations are Azure SQL Managed Instance for the tracking subsystem and Azure SQL Database serverless for the invoicing subsystem. Azure SQL Managed Instance supports instances requiring SQL Server Agent, CLR integration, and cross-database queries without the administrative overhead of managing virtual machines. Azure SQL Database serverless is ideal for a single database with unpredictable traffic and idle periods because it automatically scales compute resources and pauses during inactivity to reduce compute costs to zero.
Adım Adım Çözüm
Anahtar Kavram
Azure SQL service tier selection based on feature compatibility (SQL Agent, CLR, cross-database queries) and workload auto-scaling requirements.