1: Create a full-text index without running a full population
1 CREATE UNIQUE INDEXUi_ukdoc onproduction.document (DocumentID);2 CREATEfulltext CATALOG Aw_production_ftcat;3 CREATEFulltextINDEX onproduction.document4 (5Document--full-text Index Column name6TYPECOLUMNFileExtension--Name of column that contains file type information7Language1033 --1033 is LCID for the 中文版 language8 )9 KEY INDEXUi_ukdocTen onAw_production_ftcat One withChange_trackingOFF, NO POPULATION; A GO
2. Run a full population on the table
1 ALTER INDEX on production.document 2 Full POPULATION;
3: Create a full-text index with manual change tracking
1 UseAdventureWorks;2 GO3 CREATE UNIQUE INDEXUi_ukjobcand onhumanresources.jobcandidate (Jobcandidateid);4 CREATEFulltext CATALOG ft as DEFAULT;5 CREATEFulltextINDEX onhumanresources.jobcandidate (Resume)6 KEY INDEXUi_ukjobcand7 withChange_tracking=MANUAL;8 GO
4: Run a manual fill
1 Use AdventureWorks; 2 GO 3 ALTER INDEX on UPDATE POPULATION; 4 GO
5: Change the full-text index to use automatic change tracking
1 Use AdventureWorks; 2 GO 3 ALTER INDEX on SET change_tracking AUTO; 4 GO
6: Create or change an incremental population plan
-
In Object Explorer, expand the server.
-
databases, and then Expand the database that contains the Full-text index. " > expand
-
tables." > expand
full-text Index, and on the full-text Index context menu, click properties." > Right-click the table on which the full-text index is defined, select full-text Index Properties dialog box." > This opens the
In the Select a page pane, select Schedule.
Full-Text index population