I am looking for a tag implementation on my ASP.NET website. Having looked at several algorithms, I tend to have multiple database columns that contain one or more tags. Then I will use full-text search to search for strings with the specified tags.
All this seems pretty straightforward, with one exception: I need to be able to generate a list of available tags that the user can select.
I know that I can write a program in C # to create a list of available tags, and then run it once a week or so, but I'm just wondering if there is any SQL method for using such things more efficiently.
In addition, I cannot help but notice that the words will be extracted anyway as part of the construction of a full-text index. I don’t think there is any way to access this information?
source
share