Event ID - 15601

Event Id15601
SourceMSSQLServer
DescriptionFull-Text Search is not enabled for the current database. Use sp_fulltext_database to enable Full-Text Search.
Event InformationCAUSE:
You have attempted to perform a full-text indexing in a database that is not enabled for full-text indexing. The database may have never been enabled for full-text, or it may have been restored or attached, which will automatically disable full-text indexing.

RESOLUTION:
To check if a database is enabled for full-text indexing, execute this query:

USE {database} select DatabaseProperty(db_name(), IsFulltextEnabled), db_name()

To enable full-text indexing, execute this query:

USE {database} sp_fulltext_database enable
Reference LinksMicrosoft product: SQL Server Version: 2000.80.760.0 Event Source: MSSQLServer Event ID: 15601

Catch threats immediately

We work side-by-side with you to rapidly detect cyberthreats
and thwart attacks before they cause damage.

See what we caught

Did this information help you to resolve the problem?

Yes: My problem was resolved.
No: The information was not helpful / Partially helpful.