Hi,
We are using CS10 and SQL Server. Someone has deleted a whole lot of folders with documents within them. I need to retrieve these documents, but every query I write doesn't give me results. So, I want to use the dtreeancestors table, dtree, dauditnew and maybe the deleteddocs tables, but every time I run it I get nothing back.
select dan.auditstr, dan.auditdate, dan.dataid, dan.valuekey, dan.value1, dan.value2,dan.performerid,dan.subtype,dt.name
from dauditnew dan, dtree dt, dtreeancestors dta
where dan.auditdate > %1
and dan.auditdate < %2
and dan.dataid=dt.dataid
and dta.dataid=dt.dataid
and dta.ancestorid = %3
I have tried the above on a test folder and I get nothing back either.
Thanks in advance.