Hello,
I need to make a liveroprt extracting all the documents (subtype=144) but only those who are not deleted. Not in the recycle bin.
Anybody has an idea ?
Thanks a lot
Line Franco
How to extract documents without recycle bin ? Posted byline.franco@savoye.com (Franco, Line)On 01-16-2014 08:00 Hello, I need to make a liveroprt extracting all the documents (subtype=144) but only those who are not deleted. Not in the recycle bin. Anybody has an idea ? Thanks a lot Line Franco[To post a comment, use the normal reply function]Forum:Content Server LiveReports ForumContent Server:Knowledge Center
This electronic message contains information from MeadWestvaco Corporation or subsidiary companies, which may be confidential, privileged or otherwise protected from disclosure. The information is intended to be used solely by the recipient(s) named. If you are not an intended recipient, be aware that any review, disclosure, copying, distribution or use of this transmission or its contents is prohibited. If you have received this transmission in error, please notify MeadWestvaco immediately at postmaster@mwv.com.
Thanks for your reply!
I do this request ===>
select dt.name, dt.versionnum , lastname,dv.datasize from dtree dt join dversdata dv on dt.dataid = dv.docid and dt.versionnum = dv.version, kuaf K where dt.subtype = 144 and dt.versionnum>1 and createdby=K.id and dt.name not in(select name from(SELECT * FROM DTREE t4 start with t4.DATAID=2432 connect by prior t4.DATAID=t4.PARENTID)) order by dv.datasize desc
What do you think about that?
Thanks a lot.
best regards
How to extract documents without recycle bin ? Posted byline.franco@savoye.com (Franco, Line)On 01-16-2014 11:09 Thanks for your reply! I do this request ===> select dt.name, dt.versionnum , lastname,dv.datasize from dtree dt join dversdata dv on dt.dataid = dv.docid and dt.versionnum = dv.version, kuaf K where dt.subtype = 144 and dt.versionnum>1 and createdby=K.id and dt.name not in(select name from(SELECT * FROM DTREE t4 start with t4.DATAID=2432 connect by prior t4.DATAID=t4.PARENTID)) order by dv.datasize desc What do you think about that? Thanks a lot. best regards Line Franco[To post a comment, use the normal reply function]Topic:How to extract documents without recycle bin ?Forum:Content Server LiveReports ForumContent Server:Knowledge Center