How to dertermine if a DB is Full Text indexed?

Hi there.

I’m in the process of documentation of my Domino enviroment and I there need to find out which one of my databases is FT-indexed?

Does there exist a command on the console?

Anyone made and formula og script code for this?

I dont want to look at all the files on os level…too many files…

Any help appreciated

Thanks

Subject: How to dertermine if a DB is Full Text indexed?

In the database catalog, if you open a document there is a “full-text” tab on and there is a field called “Database full text indexed”.

Create a view with a selection formula of:

SELECT @IsAvailable(ReplicaID)& @IsUnavailable(RepositoryType)& !(DBListInCatalog = “0”) & DbFullTextIndexed=“1”

to show all databases in the catalog with a full-text index.

Subject: How to dertermine if a DB is Full Text indexed?

Can’t advise from an admin point of view, beyond scanning the catalog, but Lotusscript has a NotesDatabase property called “IsFTIndexed” which fulfils your requirement.

HTH