Coppermill
Coppermill

Reputation: 6794

SQL Azure and Full-Text Catalogs, Indexes and Searching

Does SQL Azure supports Full-Text catalogs and indexes?

Upvotes: 24

Views: 8670

Answers (4)

Faces Of IT
Faces Of IT

Reputation: 81

The feature is not in preview anymore and is generally available. More here.

Upvotes: 0

QFDev
QFDev

Reputation: 8988

SQL Azure Database does not currently (January 2014) support Full Text Search. Many requiring this functionality have opted to use Lucene.NET instead. There's a useful overview of Lucene.NET plus code samples below:

Lucene.NET Overview and Code Samples

EDIT - October 2015:

Full-Text Search is now available in Azure SQL Database (GA)

Upvotes: 16

haim770
haim770

Reputation: 49095

As of August 2014, Microsoft is offering a Search-as-a-Service named Azure Search:

Azure Search is a search-as-a-service solution that allows developers and cloud architects to embed a sophisticated search experience into web and mobile applications without having to worry about the complexities of full-text search and without having to deploy, maintain, or manage any infrastructure.

With Azure Search, a developer can enable the power of searching data in their application, reduce the complexity around managing and tuning a search index, and get up and running quickly using familiar interfaces and a consistent platform.

See http://azure.microsoft.com/en-us/services/search

Update:

As of April 30, 2015 - Full Text Search is available in Preview for SQL Azure. See http://azure.microsoft.com/blog/2015/04/30/full-text-search-is-now-available-for-preview-in-azure-sql-database/

Upvotes: 7

Related Questions