Tuesday, October 07, 2008 9:50 AM
patricg
SQL Server 2008 - Integrated Full Text Search (iFTS) ...
Voici une suite de 6 articles très intéressants sur les nouveautés de la recherche en texte intégrale de SQL Server 2008
SQL Server 2008 – iFTS Introduction SQL Server 2008 – iFTS New features SQL Server 2008 – iFTS Transparency – dm_fts_parser SQL Server 2008 – iFTS Transparency – Viewing the words in the index SQL Server 2008 – iFTS Manageability – Loading thesaurus files SQL Server 2008 – iFTS Performance – DocidMap On y voit notamment :
- l'impact (positif) de l'intégration avec le moteur

- comment afficher la liste des mots indexés (attention ca peut être plutôt long !) :
select *
from sys.dm_fts_index_keywords (db_id(),object_id('Table_1'))
select *
from sys.dm_fts_index_keywords_By_Document (db_id(),object_id('Table_1'))
- l'intérêt d'utiliser un entier comme clé d'indexation des documents :

