Hello,
I am trying to come up with a design, which just before insert a xml file into database, will warn us, that there is almost an identical xml file (with different name and different size) already stored in the database.
"Almost identical" would be based on few elements of xml file such as:
<root> <A name=""> <B name=""> <C name=""/> <C name=""/> . . </B> </A> . . . </root>
"A" and "B" from above snippet but different "C". Element "A" could be repeated 100s of time in single xml file.
Any pointers ?
- Mansi