
Originally Posted by
rpeare
So you're trying to compare file names that have been manually data entered?
so let's say you had File_Name
aaaaaaab.txt
in one table and
aaaaaaaab.txt
in another table
these may actually be the same file but someone has mistyped the name?
That type of comparison is extremely complex, it's akin to trying to find duplicates in addresses (for instance str, street, st., st all being the same thing in an address but in text they are not)
What you can do, however, is use filesystemobject to see if a file exists and if it does not you can flag it in your database. You can also use filesystemobject to gather the names of all the files in a particular directory or directory structure and add those records to your database so that there is no human intervention required and the file names will always be correct unless someone changes the name of the file itself.
I don't know the scope of your project but flagging the files that are NOT found might be the quickest way to get what you're after, then you could look for a similar name on your secondary table which might speed things up a bit.