Tuesday, 3 July 2012

SQL SERVER - 2008 "Full Text Catalog and Full Text Search"

SQL SERVER - 2008 - Creating Full Text Catalog and Full Text Search


Full Text Index helps to perform complex queries against character data.  These queries can include word or phrase searching. We can create a full-text index on a table or indexed view in a database. Only one full-text index is allowed per table or indexed view. The index can contain up to 1024 columns. This feature works with RTM (Ready to Manufacture) version of SQL Server 2008 and does not work on CTP (Community Technology Preview) versions.

To create an Index, follow the steps:-

1.Create Full-Text Catalog

Creates a full-text catalog for a database. One full-text catalog can have several full-text indexes, but a full-text index can only be part of one full-text catalog. Each database can contain zero or more full-text catalogs.





2. Create Full-Text Index

Creates a full-text index on a table or indexed view in a database. Only one full-text index is allowed per table or indexed view, and each full-text index applies to a single table or indexed view.

3. Populate the Index

Creating and maintaining a full-text index involves populating the index by using a process called a population (also known as a crawl).

No comments:

Post a Comment