As part of my Azure Devops release pipeline I want to restore the bacpac of the previous days data from Azure storage.
I am running the following az command
az sql db import -s myprod.database.windows.net -n mydb
-g myresourcegroup -p "${mypassword}" -u myuser
--storage-key "${mystoragekey}" --storage-key-type StorageAccessKey
--storage-uri
"https://mystore.blob.core.windows.net/db/bk$(date -d "yesterday" '+%Y-%m-%d').bacpac"
This command fails with the following ERROR: Can not perform requested operation on nested resource. Parent resource 'myprod.database.windows.net/mydb' not found.
The db already exists on the server. Is this saying that the parent in this case is the server or the db? It should be able to find both