Getting started with single databases in Azure SQL Database
Applies to: Azure SQL Database
A single database is fully managed platform as a service (PaaS) database as a service (DbaaS) that is ideal storage engine for the modern cloud-born applications. In this section, you'll learn how to quickly configure and create a single database in Azure SQL Database.
Quickstart overview
In this section, you'll see an overview of available articles that can help you to quickly get started with single databases. The following quickstarts enable you to quickly create a single database, configure a server-level firewall rule, and then import a database into the new single database using a .bacpac
file:
- Create a single database using the Azure portal.
- After creating the database, you would need to secure your database by configuring firewall rules.
- If you have an existing database on SQL Server that you want to migrate to Azure SQL Database, you should install Data Migration Assistant (DMA) that will analyze your databases on SQL Server and find any issue that could block migration. If you don't find any issue, you can export your database as
.bacpac
file and import it using the Azure portal or SqlPackage.
Automating management operations
You can use PowerShell or the Azure CLI to create, configure, and scale your database.
- Create and configure a single database using PowerShell or Azure CLI
- Update your single database and scale resources using PowerShell or Azure CLI
Migrating to a single database with minimal downtime
These quickstarts enable you to quickly create or import your database to Azure using a .bacpac
file. However, .bacpac
and .dacpac
files are designed to quickly move databases across different versions of SQL Server and within Azure SQL, or to implement continuous integration in your DevOps pipeline. However, this method is not designed for migration of your production databases with minimal downtime, because you would need to stop adding new data, wait for the export of the source database to a .bacpac
file to complete, and then wait for the import into Azure SQL Database to complete. All of this waiting results in downtime of your application, especially for large databases. To move your production database, you need a better way to migrate that guarantees minimal downtime of migration. For this, use the Data Migration Service (DMS) to migrate your database with the minimal downtime. DMS accomplishes this by incrementally pushing the changes made in your source database to the single database being restored. This way, you can quickly switch your application from source to target database with the minimal downtime.
Hands-on learning modules
The following free Learn modules help you learn about Azure SQL Database.
- Provision a database in SQL Database to store application data
- Develop and configure an ASP.NET application that queries a database in Azure SQL Database
- Secure your database in Azure SQL Database
Next steps
- Find a high-level list of supported features in Azure SQL Database.
- Learn how to make your database more secure.
- Find more advanced how-to's in how to use a single database in Azure SQL Database.
- Find more sample scripts written in PowerShell and the Azure CLI.
- Learn more about the management API that you can use to configure your databases.
- Identify the right Azure SQL Database or Azure SQL Managed Instance SKU for your on-premises database.