Created
July 3, 2022 11:18
-
-
Save MahdiKarimipour/ff6e445ef557adfba6bb39febff545e2 to your computer and use it in GitHub Desktop.
How to create Full-Text Index using SQL Server
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE FULLTEXT INDEX ON dbo.Addresses(FullAddress) | |
KEY INDEX PK_Addresses ON FTCAddress | |
WITH STOPLIST = OFF, CHANGE_TRACKING AUTO; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment