Full text index

Hi All,

There’s a way to create the full text index for all databases in the same directory using a command in the server console ?

I know the process using the domino administrator. Do exists a way to create using a command line ?

Thanks for the Help !!!

Subject: Full text index

With 6.5, you can create an FTIndex with different options.

Sub Initialize

Dim session As New Notessession

Dim db As NotesDatabase

Set db = session.CurrentDatabase

options& = FTINDEX_ALL_BREAKS + FTINDEX_CASE_SENSITIVE

If db.IsFTIndexed Then

Call db.CreateFTIndex(options&, True)

Messagebox "Database index recreated",, "FT index"

Else

Call db.CreateFTIndex(options&, False)

Messagebox "New database index created",, "FT index"

End If

End Sub

I think that you can also go directly in a directory and loop in it to create your index.

You can also

JYR