Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
Westside
Starting Member
9 Posts |
Posted - 2010-06-22 : 01:02:56
|
Hi,I'm using SQL 2008I'm trying to create a full-text index on a table and populate it but for some reason it doesn't seem to contain any data.I ran this SQL:SELECT *FROM sys.dm_fts_index_keywords( DB_ID('mydb'), OBJECT_ID('Indexed_Table') )Steps I'm taking via SSMS1. Right Click Table, and Define Full Text Index2. Choose Unique Index3. Select table columns to be eligible for full-text queries4. Create Full-Text Catalog, give it a name5. Now that its created, I clicked "Start Full Population" and it says successFor some reason thought I still don't get any results when I query the table or run :SELECT *FROM sys.dm_fts_index_keywords( DB_ID('mydb'), OBJECT_ID('Indexed_Table') Any ideas why? |
|
|
|
|