Hi :
I have created this report to list all documents,version created. I am trying to join it in such a way that instead ofcreatedby column i can display the user login id,name etc. So basically i am trying to get a system usage report which will have ssay username, officelocation, new folders created, new docs uploaded etc as the result to see how users are utilizing the system.Any help please?
SELECT a . name , a . dataid , a . subtype , a . CreatedBy , a . createdate , a . modifydate , b . vercdate
FROM dtree a , dversdata b
WHERE a . dataid = b . docid AND a . versionnum = b . version AND a . dataid in
( SELECT dataid FROM dtree WHERE subtype = 144 ) Order by a . name