Ok perfect thanks Erland, We do take regular backups and they are stored on a separate disk and also have snapshots in place to rollback to if the db does end up in a bigger mess due to the upgrade failing
How to fix missing languages on Full text indexes
Our SQL Server went down after a failed patch `and locked the server instance in ChangePending state, we rolled back the VM and got the DB back to being operational with the exception of the full text indexes... I have run the repair tool checked to see if the languages can be queried restarted the server and still no dice on the full text indexes working. What other options do I have aside from a fresh install of the SQL server
SQL Server | Other
2 additional answers
Sort by: Most helpful
-
Deleted
This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.
Comments have been turned off. Learn more
-
Q&A Assist2026-02-06T11:54:48.6133333+00:00 AI generated content. This question contains an answer created with AI from Q&A Assist. Learn moreTo address the issue of missing languages on full-text indexes in SQL Server after a rollback, you can try the following steps:
- Check Full-Text Language Configuration: Ensure that the default full-text language is set correctly. You can do this using SQL Server Management Studio (SSMS) or Transact-SQL. In SSMS, right-click the server in Object Explorer, select Properties, then go to the Advanced page to check the Default Full-Text Language.
- Rebuild Full-Text Indexes: If the full-text indexes are still not functioning, you may need to rebuild them. This can be done using the following SQL command:
ReplaceALTER FULLTEXT INDEX ON [YourTableName] REBUILD;[YourTableName]with the actual name of your table. - Verify Language Support: Make sure that the languages you are trying to use are supported and properly installed. You can check the supported languages using the
sys.fulltext_languagesview. - Repair Full-Text Catalogs: If the indexes are still not working, consider repairing the full-text catalogs. You can use the following command:
ReplaceALTER FULLTEXT CATALOG [YourCatalogName] REBUILD;[YourCatalogName]with the name of your full-text catalog. - Check for Errors: Review the SQL Server error logs for any messages related to full-text search that might provide additional insights into the problem.
- Consider SQL Server Repair: If none of the above solutions work, you might consider running a repair on the SQL Server installation. This can be done through the SQL Server installation media by selecting the repair option.
- Fresh Install as Last Resort: If all else fails and the full-text indexes are still not operational, a fresh install of SQL Server may be necessary, but this should be the last resort after exhausting other options.
These steps should help you troubleshoot and potentially resolve the issue with missing languages on your full-text indexes.