I've created a tree structure of folder inside a cabinet to organize a huge amount of files I needed to upload.
Now I need to do crosscheck that the files I had in my folders correspond to the ones I needed to upload. Primarily there are document types that I can use but I'd like to do something like:
select doctype, folder, count(*) from whoknowswhere
group by doctype, folder
There could be some errors caused by duplicate files.
I did experience an interruption on the load process which made me purge from the XML file those that already had been loaded, I might have made some bad decisions here.
By the way every folder represents a box so if I count then I could most probably identify where's the problem.
DQL is the answer? are there other tools for this?
Regards