I am new to Documentum and have a DQL question ...
How via DQL can I get information about the content associated with a document?
Here is what I have done so far (version 6.5 SP2):
Installed Documentum Content Server and Documentum Administrator
Created a repository
Using Administrator I created a new type named "jdl_document" which is the standard "dm_document" with an additional string attribute named "tangent"
Using Administrator I was able to create two documents using DQL. The following is the DQL for the first document:
CREATE "jdl_document" OBJECT
SET "title" = 'Test Document 1'
SET "tangent" = 'Tangent Document 1'
SETFILE 'c:\Junk\TestDoc1.doc'
WITH CONTENT_FORMAT='msww'
Using a DQL 'select' statement I can view all of the properties of the above document.
How do I get information about the content? (For example, the path is "c:\Junk\TestDoc1.doc")
Thank you in advance.