EDIT 2
Just to make it clear - this question is not asking for "DA CODEZ", just an idea as to possible approaches in VBScript. It's not my weapon of choice, and if I needed to do this on a un*x box then I wouldn't be bothering anyone with this...
I have two text files. File A contains a list of keys:
00001 13756 000.816.000 BE2B
00001 13756 000.816.000 BR1B
00002 16139 000.816.000 BR1B
00001 10003 000.816.000 CH1C
00001 10003 000.816.000 CH3D
00001 13756 000.816.000 CZ1B
....
....
File B, tab separated, contains two columns the keys, and a UUID:
00003 16966 001.001.023 2300 a3af3b1d-ea04-4948-ba25-59b36ae364ae
00001 12119 001.001.023 CZ1B e6efe825-0759-48b0-89b9-05bbe5d49625
00002 16966 001.001.023 BR1B d3a1d62b-a0d5-43c3-ba49-a219de5f32a5
00001 12119 001.001.023 BR1B 5d74af27-ed4b-4f90-8229-90b6d807515b
00001 10009 001.001.024 BR1B 590409cc-496a-49eb-885c-9bbc51863363
00002 24550 001.001.024 2100 46ecea5d-f8f5-4df9-92cf-0b73f6c81adc
00001 12119 001.001.024 CZ1B e415ce6f-7394-4a66-a7f8-f76487e78086
00002 16966 001.001.024 CZ1B c591a726-4d71-4f61-adfd-63310d21d397
....
....
I need to extract, using plain VBScript, the UUIDs for those entries in File B which have no matching entry in File A. (I need to optimise for speed, if that's an important criteria.) The result should be a file of orphaned UUID codes.
If this isn't easy/possible, that's also an answer - I can do it in the db we're using but the performance is woefully inadequate. Just been blown away by how much faster VBScript was than db solution for a previous processing task.
EDIT
Someone's suggested using some sort of ADO library, after converting the file to CSV, which I'm looking into.