全文索引怎么更新阿?
自动,还是要执行什么语句??
我现在建了个全文索引名字为
Ipubsp_fulltext
---------------------------------------------------------------
EXEC sp_fulltext_database 'disable'
if (select databaseproperty ('test','IsFulltextEnabled'))=0
begin
use test
EXEC sp_fulltext_database 'enable'
end