Is it possible to export bacpac file from SQL SERVER 2008 (running 10.50.6220)? I can only see option for dacpac.
2 Answers
You can use Sql Database Migration Wizard or command line tool sqlpackage.exe for creating .bacpac file for SQL Server 2008.
Download + documentation for SQL Database Migration wizard:
https://sqlazuremw.codeplex.com
This is from Migration Wizard page, which mentions about supporting SQL Server 2008 version. Though in the download links it only starts from SQL Server 2008 R2 but I would give that a try. I have not tested anything below SQL Server 2012.
SQL Database Migration Wizard (SQLAzureMW) is designed to help you migrate your SQL Server 2005/2008/2012/2014 databases to Azure SQL Database.
How to use sqlpackage.exe?
https://msdn.microsoft.com/en-us/library/hh550080%28v=vs.103%29.aspx?f=255&MSPPError=-2147217396
There is a step by step guide about using these tools.
- 9,052
- 6
- 46
- 52
- 13,687
- 3
- 30
- 54
AS per MSDN BOL Here The fidelity limitations in the DAC Framework data deployment engine in SQL Server 2012 SP1. The limitations apply to the following DAC Framework actions: deploy or publish a .dacpac file, and import a .bacpac file.
For further ref https://stackoverflow.com/questions/7847189/azure-sql-database-bacpac-local-restore
- 6,523
- 9
- 40
- 62