How can we help you today? How can we help you today?
James B
Hi Bret, thanks for your post, and sorry you are having some trouble. The underlying error as you probably saw is: Fulltext index references unknown key index PK__Document__5A5B77D507C43B0B The first thing to establish is if this is something odd in your database or your scripts - to do this, try unlinking your database, then link it to an "evaluation" repository and perform a commit of all the objects. If that works, then the problem is probably in the script files; my guess being they have some sort of inconsistency in. You can try checking out a copy of the scripts from your repo to a temporary folder and then running a command prompt "findstr" command to locate where the reference is, for example: findstr /S /C:"PK__Document__5A5B77D507C43B0B" *.* That will hopefully find the file where the fulltext index is referencing that key. If no other reference is found, then it's likely that the PK on whichever table it references is now different. As you're using system named constraint names rather than explicit ones, it could be that the problem was caused by someone committing a change to the underlying table which resulted in a new PK name, but not the Fulltext index (which in theory should have been shown as a dependency to be committed) To correct the problem, you'd ideally need to work out what the correct PK name now is, update the file for the fulltext index to match that, then unlink and relink your DB to refresh the working copies. / comments
Hi Bret, thanks for your post, and sorry you are having some trouble. The underlying error as you probably saw is: Fulltext index references unknown key index PK__Document__5A5B77D507C43B0B The fir...
0 votes