Hello,
We have an existing report that lists all documents under a folder. I just want to see the folders not documents. What do I change?
Here is what I have:
select dtree.dataid || '|' || sys_connect_by_path(name,':') "NodeID|Path|FileName"
from dtree
where dtree.subtype = 144
start with dtree.dataid = %1
connect by prior dtree.dataid = dtree.parentid
order by dtree.dataid
Thanks,