Page 1 of 1

Index meta data after migrating data from other system

Posted: Thu Jan 17, 2019 11:24 am
by michaelbrandi
Hello everyone,

I have replaced an old system with LogicalDoc Community, basically, I have created some extended properties, then imported about 10000 files, and then coped meta data from the old systems database into the LogicalDoc database, to update the extended properties, some dates and the user information.

Everything seems to be working fine, but I am not getting the Extended Properties indexed, so I can't find any document by searching on any of the extended properties.

I have tried to select the: Reschedule all for indexing, and they do go to the queue, but I still can find anything.

Does anyone have any ideas of what the problem could be?

Br Michael

Re: Index meta data after migrating data from other system

Posted: Thu Jan 17, 2019 3:20 pm
by agaspa
Hi michaelbrandi,
if you have done everything from the database, there are two options: you have a problem in the data schema, or simply you have to mark the documents to be indexed again (reindex all the documents)
In order to do so you have to set the flag ld_indexed of column ld_document to 0

Code: Select all

update ld_document set ld_indexed = 0;
Please note that the reindexing process also involve the parsing of contents

Re: Index meta data after migrating data from other system

Posted: Thu Jan 17, 2019 3:34 pm
by michaelbrandi
Thank you very much, I think I have it working now :o)