About 312,000 results
Open links in new tab
  1. sql - When should you use full-text indexing? - Stack Overflow

    Mar 18, 2016 · Here is two good articles on when, why, and how to use full-text indexing in SQL Server: How To Use SQL Server Full-Text Searching Solving Complex SQL Problems with …

  2. sql server - Full-Text Search is not installed, or a full-text ...

    Nov 22, 2017 · but I get the error: Full-Text Search is not installed, or a full-text component cannot be loaded Full text search is installed, as testified by the command: SELECT …

  3. SQL Server: Normal Index vs. Fulltext Index - Stack Overflow

    Jul 23, 2009 · 4 From the MSDN: In contrast to full-text search, the LIKE Transact-SQL predicate works on character patterns only. Also, you cannot use the LIKE predicate to query formatted …

  4. How to find Full-text indexing on database in SQL Server 2008?

    Apr 29, 2013 · Hi I am looking for a query that is able to find Full text indexing on all tables and columns within a database using SQL Server 2008. Any information or help that can be …

  5. sql - Cannot use a CONTAINS or FREETEXT predicate on table or …

    Full-Text indexing wizard will guide you through the process. It will also create a full-text search catalog for you if you don't have any yet. You can find more info at MSDN After following the …

  6. How do FULLTEXT INDEXES on multiple columns work?

    Sep 11, 2012 · From the manual: For natural-language full-text searches, it is a requirement that the columns named in the MATCH () function be the same columns included in some …

  7. sql - Full text search vs LIKE - Stack Overflow

    May 19, 2017 · My question is about using full text search. As I know like queries which begin with % never use index : SELECT * from customer where name like %username% If I use fulltext …

  8. sql server - Guidelines for full-text index maintenance - Database ...

    Extra info: basic performance testing This SQL Fiddle contains code that can be used to create a full-text index with AUTO change tracking and examine both the size and query performance …

  9. In SQL Server How to create full text index with TYPE COLUMN …

    Dec 16, 2015 · At indexing time, the Full-Text Engine uses the abbreviation in the type column of each table row to identify which full-text search filter to use for the document in column_name.

  10. Retrieving SQL Server Full Text Index terms - Stack Overflow

    Nov 13, 2008 · 17 Using Lucene, one can retrieve the terms contained within in an index, i.e. the unique, stemmed words, excluding stop-words, that documents in the index contain. This is …