I'd like to create a DQL query to get all "documents" in the "documentum" repository. Sounds like a pretty simple query. Can anyone tell me how to do that?
Thanks
If there are Accepted Answers, those will be shown by default. You can switch to 'All Replies' by selecting the tab below.
download and read the DQL reference manual!!! in the meantime the all knowning could be consulted
http://www.google.ie/search?q=DQL+example&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a
to get
http://ajithp.com/dql-tips/
http://dionrobin.wordpress.com/2010/02/08/useful-dql-queries/
In the most simplest form, assuming that all documents are of either dm_document type or its subtypes, the query would be
select * from dm_document (all);