Why are you creating a new question when we have already discussed this in your other post? This bad forum etiquette.
Oops, sorry, typo, I was actually looking for Rendition Information. I wanted a query to find out count of documents in the cabinet that have renditions
Try something like:
SELECT * FROM dm_document d WHERE FOLDER('/Cabinet_Name', descend) AND EXISTS ( SELECT * FROM dmr_content r WHERE ANY r.parent_id = d.r_object_id AND r.full_format = 'pdf' )
Try this:
SELECT r.full_format,r.full_content_size,d.object_name FROM dm_sysobject d, dmr_content r WHERE ANY r.parent_id = d.r_object_id AND folder('/Cabinet_Name,descend)
You can group/sum using the output of the DQL in Excel