Like Azure, Google offers different database services such as Spanner or MariaDB as PaaS services. In this recipe, we will use the classic SQL instances which, on Google Cloud, are running MariaDB. You will see how to create a new instance and import a database dump.
SQL on Google Cloud
Getting ready
Install and start PowerShell Core.
How to do it...
Let's perform the following steps:
- Discover the relevant cmdlets first, as shown in the following code:
Get-Command -Noun GcSql*
- To get started, configure the desired settings for your PaaS instance, as shown in the...