I would like to export Azure SQL database as file to Storage. There is only table with one row for testing purpose.
I execute followings and it does not give any errors, but it never created bacpac file to Storage. Re-executing commands gives "There is an import or export operation in progress on the database" so obviously it has tried something.
What could be wrong?
New-AzSqlDatabaseExport -ResourceGroupName "RG01" -ServerName "Server01" -DatabaseName
"Database01" -StorageKeyType "StorageAccessKey" -StorageKey "StorageKey01" -StorageUri
"http://account01.blob.core.contoso.net/bacpacs/database01.bacpac" -AdministratorLogin "User"
-AdministratorLoginPassword "secure password"
https://docs.microsoft.com/en-us/powershell/module/az.sql/new-azsqldatabaseexport?view=azps-8.3.0

