The Azure Cloud offers many different database management systems and database types, such as MariaDB, PostgreSQL, Cosmos DB, and Azure Tables. This recipe will show you how to create a simple managed MS SQL database on an SQL server instance.
SQL on Azure
Getting ready
Install and start PowerShell Core.
How to do it...
- To get started with a database deployment, we still need a server. This server is a managed SQL server that is provided as a PaaS offering, as shown in the following example:
New-AzResourceGroup -Name SqlDatabases -Location westeurope
$adminCredential...