We want to add full-text index on a table which has composite primary key. The requirement for a full-text index is that table has to have single-column unique index which will be used for full-text.
Thus primary key cannot be used (it is composite). I was going through table columns but neither of them is guaranteed to be unique, except rowversion column.
According to MSDN - rowversion seems to be guaranteed to be unique, but I am wondering whether it is a good idea to put unique index on it and use it for full-text then.