Quantcast
Channel: SQLServerCentral » SQL Server 2014 » Development - SQL Server 2014 » Latest topics
Viewing all articles
Browse latest Browse all 3145

Full text index not updating

$
0
0
I am having an issue with a full-text index. I am not very familiar with indexes so please forgive me if this is unclear.New values are added through an application by end users and I think maybe the user does not have sufficient permissions to cause the index to be updated, but I thought this happened behind the scenes and shouldn't really matter what the user’s permissions to the underlying table are. When a new value is added to the underlying table, the index is not updating to include the new value. When a search is performed in the application for the new value, it does not show up unless the index is re-created manually. The index is definitely not disabled and I was under the impression that the index should be updated automatically when the table/column with the index is added to or updated.I have looked at the index fragmentation properties and see that the Page Fullness is around 98% and total Fragmentation is about 4%. I have also seen Statistics mentioned several times in my research. I have noticed that AUTO_UPDATE_STATISTICS is ON for the affected database if that makes a difference.Luckily, new values are not added often so I am manually dropping, recreating and adding Grant Reference permissions to the index each time a new value is added. After this, the new value shows up in the search in the user application.The second part of my question is how do I see what permissions exist on the index? I have scoured online for a while now and can only find info about adding permissions to the index, but nothing about viewing what permissions already exist. I would think that there would be a table somewhere that holds records of existing permissions for the index.Thanks in advance for your help.

Viewing all articles
Browse latest Browse all 3145

Trending Articles