Hi,
We're looking for a way to identify folders on which version tracking is not enabled. I don't think this is possible using the search syntax so we have been looking at a way to identify them via a SQL query. Between the client and ourselves we have come up with two potential queries but they return slightly different results:
Query 1 (returns 121 rows)
SELECT tocid, name, parentid, toc_flags
FROM [toc]
WHERE toc_flags = '1' and etype = 0
Query 2 (returns 128 rows)
SELECT tocid, name, parentid
FROM [Laserfiche_Dev].[dbo].[toc]
WHERE toc_flags <> 2097153 AND etype = 0 AND tocid Not in (1,2)
Is there a conclusive way to determine this?
Thanks,
Nigel.