D365FO: ππΎπ πππ₯π€π§π©ππ ππππ₯ππ πππ‘π ππ€π£π©πππ£π¨ ππ€π§π§πͺπ₯π©ππ πππ©π
If you experience below error message when trying to import bacpac file into tier 1 (DEV) environment then use the suggested steps to get over this error and get your database imported.
Importing to database 'AxDB_Daxture' on server '.'.
SqlPackage.exe : *** Error importing database:Could not load package from 'C:\Users\Adminb1c06345af\Downloads\daxturebackup.bacpac'.
At line:13 char:5
+ & $LatestSqlPackage $commandParameters "/p:CommandTimeout=0"
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (*** Error impor...backup.bacpac'.:String) [], RemoteException
+ FullyQualifiedErrorId : NativeCommandError
File contains corrupted data.
Based on this docs link https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/dev-itpro/database/import-database, download the .NET CORE version of SqlPackage.exe.
This is the .zip file that can be extracted to C:\Temp\Sqlpackage-dotnetcore
From there, instead of using the Sqlpackage.exe under C:\Program Files (x86), use the Sqlpackage.exe in C:\Temp\Sqlpackage-dotnetcore.
Command will be:
C:\Temp\Sqlpackage-dotnetcore>SqlPackage.exe /a:import /sf:D:\Exportedbacpac\my.bacpac /tsn:localhost /tdn:<target database name> /p:CommandTimeout=1200
Comments
Post a Comment
I will appreciate your comments !