Hi,
How can I retrive the folder path for a file using Query or LAPI call? I used below QUery to retrive the folder path:
select dataid, name, sys_connect_by_path(name,':') as "Path" , subtype from DTree where dataid in(select dataid from DTree connect by prior dataid=parentid start with dataid=232782) connect by prior dataid=parentid start with dataid=2000
This works fine even when I have more than 15 sub folders and I give leaf node ID. But for the same 15 level hierarchy, If I give 1st level folder and try to retrive the folder path of that It is not working, oracle go on processing but doesnt retrun any result
I don't understand that for 15 level it gaave me entire path, but for 1st leavel folder which is very short one it iw not working.
Any idea why that happens?