Hi,
I'm trying to identify documents in my docbase which don't have a PDF rendition, i.e. document objects which are not the parent of any content object with a PDF format. I know that i have such documents, as I can see examples in Webtop.
Unfortunately, the query below keeps returning 0 rows.
select * from dm_document(all) where r_object_id not in (select distinct parent_id from dmr_content where full_format = 'pdf')
Any idea what's wrong?
Thanks!
Raph