Hi guys,
Any idea how to get a stand-alone client to update automatically its FT indexes? I find it so irritating to have to think to update it regularly manually…
Thanks!
Hi guys,
Any idea how to get a stand-alone client to update automatically its FT indexes? I find it so irritating to have to think to update it regularly manually…
Thanks!
Subject: RE: Full Text Indexing on Client
It used to be that the client background task took care of this, but it hasn’t worked reliably for several releases. What I do is add this simple code into the Database Script.
Sub Queryclose(Source As Notesuidatabase, Continue As Variant)
Dim DB As NotesDatabase
' Update existing Full Text Index on local replicas
Set DB = Source.Database
If DB.Server = "" Then
Call DB.UpdateFTIndex(False)
End If
End Sub
Marc Resnick, Gear Up Technologies
Subject: The background task will keep indexes up to date
for databases that replicate and receive new documents.
After the replication, a request is made to update any previously build view/folder indexes, as well as the full text index.
Doug Conmy
Lotus Notes Lead Architect
Subject: *thanks for clarifying that is does indeed work.
Subject: Glad this is working again in 8.5
Subject: Stand alone client
Hi Doug,
I stupidly forgot to say that I am a die-hard Notes user without a server. Any idea beside a DB script?
Subject: Thanks Mark! (eom)