Hi,
I have a strange anomaly in one of my documents. This document's primary content file is a 864-byte GIF file, with an additional, manually imported PDF rendition.
It all works fine in Webtop, and the original file can be successfully exported. However, the size-related properties in the docbase are set to 0:
DQL> select d.r_object_id, d.r_content_size, c.full_content_size, c.full_format from dm_document(all) d, dmr_content c where any c.parent_id = d.r_object_id and d.r_object_id = '<object_id>'
...
"r_object_id";"r_content_size";"full_content_size";"full_format"
"0900a04581809cca";0;65772;"pdf"
"0900a04581809cca";0;0;"gif"
This bugs me, because this single anomaly shows up in a list of contentless objects which it doesn't belong to.
Thanks in advance!
R.