Full-Text indexing option is greyed out - Enable
You can view all the full text enabled value for each DB with this code:
select name, DATABASEPROPERTY(name,'IsFulltextEnabled')
from master..sysdatabases where dbid > 4
you had to make the catalogs manually:
use MyDatabaseName
goEXEC sp_fulltext_database 'enable'
go
Comments
Post a Comment