I have db that does index ever. I did delete the index to recreate with the option or planned schedule, and there was no immediate result. The index does not up to date. If I make no intervention the documents are not indexed up at a rate of 4000 to 5000 per week. What should I do to ensure that the basic s’indexe automatically.Thanks
/
Problème d’index.
J’ai une base qui indexe jamais. J’ai fait supprimer l’index pour la recreer avec l’option horaire, planifié ou immédiatement et rien ne fait. L’index ne se met jamais à jour. Si je ne fait aucune intervention les documents non indexés augmente à raison de 4 à 5 milles par semaine. Que dois-je faire pour que la base s’indexe automatiquement.
Merci
Subject: Index problem
Frederic,
I assume you are talking about the full-text index of a notes db.
The first option is to set the update frequency to immediate The update task (which should be running on every domino server and is configured by default) should then be responsible for updating the FTI of this particular db (note: “Immediate” is misleading and means that the update task will work on this db according to its internal mechanism which involves a queue).
Another option is to set the update frequency to scheduled, and then to run a program document in order to update the views and FTI of this particular db on a regular basis, say every 30 minutes (program = updall, command line =
directory\dbname.nsf). I personally prefer this method.
Ben
Subject: RE: Index problem
Frederic,
It’s also possible that your server is just falling behind on tasks. I would monitor indexing in general to see if the update task is on schedule or behind.
I believe the ft indexing occurs immediately after the regular update, which is why I wonder if the regular indexing being behind might cause ft index problems.
regards,
raphael
Subject: RE: Index problem
Thanks