views:

111

answers:

0

I got a big table with around 10 million records. The table is part of full text index and the data contained in it is recreated daily. Now after recreating the data I rebuild the full text index using SQL:

ALTER FULLTEXT INDEX ON [table1] START FULL POPULATION;

The issue is that the folder containing full text index files size is growing every day. It started with 1 GB and is now around 10 GB.

What should I do to stop this growing size of full text index files?