Using DQL I want to return all the documents under the Cabinet test. How would I go about writing a query to do this?

link|improve this question
feedback

2 Answers

up vote 2 down vote accepted
select r_object_id, object_name from dm_document(all) where folder('/NameOfCabinet', descend);
link|improve this answer
I'm not sure if I agree with the all predicate, as this will return all versions, not just current versions. – shsteimer Feb 6 '09 at 19:28
feedback

select * from dm_document where folder('/NameOfCabinet', descend); It will only return the current version of all the documents but not the all the version.

To see all the versions.

select * from dm_document(all) where folder('/NameOfCabinet', descend);

link|improve this answer
feedback

Your Answer

 
or
required, but never shown