yuuvis® Q&A

0 votes
in yuuvis Ultimate by (140 points)
Hello,

Is there a possibility (maybe using a specific search !!) to get all changes starting from a provided data/time ? the changes are related to all document operations (create, update, delete).

Thanks

1 Answer

0 votes
by (1.4k points)
Hello,
Are all changes required over time to a document or is the latest change to all documents sufficient?
In this case, the search for all objects, sorted by the date of change, will return the result.

regards andreas
by (140 points)
Thanks Andreas.
What I need is informations about ALL documents. Does the search include the deletions also ?
These informations will be useful to me in order to synchronize document references with a specific index on my side.
by (1.4k points)
Hello,
No, in this case you can get the result by use the statement SELECT * FROM system:audit WHERE  action IN (100,200,300) AND system:creationDate >= '2020-01-01'. But this query is not optimized in our System.

regards
andreas
...