I'm trying to export a bacpac file, which I have exported from Umbraco Cloud, but when I try to import it I get the following errors. This is a bacpac I have exported from a v8 Umbraco Cloud site.
The reason I'm doing this is because I'm getting an error when trying to run a cloud site locally, but that's a separate issue - I should be able to export a bacpac file and import it.
Export Bacpac and import into SQL Server
Hi
I'm trying to export a bacpac file, which I have exported from Umbraco Cloud, but when I try to import it I get the following errors. This is a bacpac I have exported from a v8 Umbraco Cloud site.
To create the bacpac file I followed instructions from : https://our.umbraco.com/documentation/Umbraco-Cloud/Databases/Backups/
The reason I'm doing this is because I'm getting an error when trying to run a cloud site locally, but that's a separate issue - I should be able to export a bacpac file and import it.
Thanks to Sebastiaan Janssen for the pointer, which confirmed that before you can restore a bacpack file you need to run the following on your server
EXEC sp_configure 'contained', 1; RECONFIGURE;
After running the above, I was able to restore the backup
is working on a reply...