If you experience the 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:UsersAdminb1c06345afDownloadsdaxturebackup.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:TempSqlpackage-dotnetcore
From there, instead of using the Sqlpackage.exe under C:Program Files (x86), use the Sqlpackage.exe in C:TempSqlpackage-dotnetcore.
Command will be:
C:TempSqlpackage-dotnetcore>SqlPacage.exe /a:import /sf:D:Exportedbacpacmy.bacpac /tsn:localhost /tdn:<target database name> /p:CommandTimeout=1200