Hi there,
I wrote an agent to make a thorough inventory of databases and their components on a dozen servers. Some results look strange : databases that are not full-text indexed are reported as being so.
After questioning my code, then my logic, then my sanity, I made the simple test agent as follow :
Sub Initialize
Dim s As New NotesSession
Dim db As NotesDatabase
Set db=s.Getdatabase("Alpha/Arbor", "log.ntf", false)
If Not db.Isopen Then Call db.Open("", "")
Print Now & " " & db.Isftindexed
End Sub
Lo and behold ! It reports log.nTf as FTIndexed if and only if log.nSf is FTIndexed.
My question are :
-
could please someone replicate this test in their environment to see if the oddity is within my environment or if db.isFTIndexed is bugged ?
-
what would be a reliable workaround ?
Thanks