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

Popular posts from this blog

OCR text detection with google APIs C#

The specified version string contains wildcards, which are not compatible with determinism.

How to set dynamically height/width of an external image in rdlc report?