Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

After Upgrading databases to Azure SQL V12 and enabling Full-Text Search, issues with importing and exporting bacpac files using SSMS

recently we updated our SQL Azure Servers and Databases to V12 in order to utilize the Full-Text Search functionality. This worked well after running a few statements found here in this post Cannot enable Full-Text search on Azure SQL Database V12

However after enabling Full-Text Search in the DB, we are now unable to export the data-tier application to bacpac file using SSMS. We are running into this error:

The element ft is not supported in Microsoft Azure SQL Database v12. (Microsoft.Data.Tools.Schema.Sql)

I'm on SQL Server 2014 Management Studio SP1 with CU1 - (this is the latest I believe)

I found a similar issue here https://social.msdn.microsoft.com/Forums/sqlserver/en-US/c6f3feaa-a671-4618-abda-584b923fb2a8/error-exporting-databaseindexing-for-document-type-doc-is-not-supported-on-microsoft-azure-sql?forum=ssdt/ that suggests using SqlPackage.exe to export VS going through the wizard, however the error is not exactly the same and I'm not sure if that would work.

On a related note, exporting the database to a bacpac file through the Azure Preview Portal (portal.azure.com) was relatively simple and did work as long as you have blob storage setup, I would like to continue to use and work with SSMS 2014 though.

any help would be greatly appreciated!

like image 415
Nick Kresz Avatar asked Dec 30 '25 22:12

Nick Kresz


2 Answers

You need to install the following hotfix for it to work:

https://support.microsoft.com/en-us/hotfix/kbhotfix?kbnum=3058512&kbln=en-us

like image 79
Satya_MSFT Avatar answered Jan 01 '26 15:01

Satya_MSFT


Export in SSMS is powered by the Data Tier Application Framework, otherwise known as DacFX. Updates for DacFX can be downloaded and installed separately from the SSMS installer. The latest version of DacFX adds support for FTS on Azure V12. Look here for the DacFX download: http://blogs.msdn.com/b/ssdt/archive/2015/05/18/sql-server-data-tools-update-for-may-2015.aspx

Once installed, SSMS 2014 will use the newer version.

like image 21
Steven Green Avatar answered Jan 01 '26 15:01

Steven Green