Why the Full-Text indexing option is greyed out?

前端 未结 7 1070
故里飘歌
故里飘歌 2021-02-18 16:06

I installed SQL Server 2008 Express with Advanced Services, but when I try to create a new database, the option Full-Text indexing is greyed out, I believe the full-text indexin

7条回答
  •  名媛妹妹
    2021-02-18 16:29

    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
    

    Pollus

提交回复
热议问题