SQL ON LINUX: Install Full-Text Search
MSSQL, SQL On Linux full text search, SQL on Linux, SQL Server on Linux 0
(0)
The following steps will install full text search in SQL Server on Red Hat Enterprise Linux platform. Full-Text Search enables you to run full-text queries against character-based data in SQL Server tables. for more details, you can refer here.
sudo yum install -y mssql-server-fts
If full text search package(mssql-server-fts) is already installed on Linux machine, then you can update to the latest version with the following commands:
sudo yum check-update
sudo yum update mssql-server-fts
Once full text search feature is enabled. You can verify using following command.
SELECT SERVERPROPERTY('IsFullTextInstalled') as Full_Text_Search_Status;
GO
How useful was this post?
Click on a star to rate it!
Average rating 0 / 5. Vote count: 0
No votes so far! Be the first to rate this post.