Azure SQL Database is a fully managed relational database service built on Microsoft SQL Server. It provides high performance, scalability, and built‑in intelligence that helps you modernize data‑driven applications.
With automatic patching, backup, and seamless scaling, you can focus on building great applications instead of managing infrastructure.
Azure SQL Database offers multiple purchasing models to fit any workload:
| Model | Description |
|---|---|
| vCore‑based | Pay for compute and storage separately; ideal for predictable workloads. |
| DTU‑based | A bundled measure of compute, storage, and I/O; simple for small apps. |
| Serverless | Auto‑scales compute based on workload; pay per second. |
Visit the pricing page for the latest rates and calculators.
For a step‑by‑step tutorial, see the quickstart guide.
Server=tcp:your_server_name.database.windows.net,1433;
Initial Catalog=your_database_name;
Persist Security Info=False;
User ID=your_username;
Password=your_password;
MultipleActiveResultSets=False;
Encrypt=True;
TrustServerCertificate=False;
Connection Timeout=30;