Hi,
I need to create a script that will figure out the deltas between two files e.g. yesterdays csv and todays csv; and write the delta to a new file... the unique key for the script would be $80 in the file...
So I have something like this as input;
yesterday
name, address, dob....snn
name1, address1,1/1/1...1111
name2, address",2/2/2...2222
name3, address3,3/3/3...3333
name4, address4,4/4/4...4444
Today (a new record was added (ssn 5); ssn 3 changed, and ssn1 was deleted.
today
name, address, dob....snn
name2, address",2/2/2...2222
name3, address3,3/3/3...33333
name4, address4,4/4/4...4444
name5, address5,5/5/5...5555
I need to find the delta between the two files & write to a new one... any examples please?
I need to create a script that will figure out the deltas between two files e.g. yesterdays csv and todays csv; and write the delta to a new file... the unique key for the script would be $80 in the file...
So I have something like this as input;
yesterday
name, address, dob....snn
name1, address1,1/1/1...1111
name2, address",2/2/2...2222
name3, address3,3/3/3...3333
name4, address4,4/4/4...4444
Today (a new record was added (ssn 5); ssn 3 changed, and ssn1 was deleted.
today
name, address, dob....snn
name2, address",2/2/2...2222
name3, address3,3/3/3...33333
name4, address4,4/4/4...4444
name5, address5,5/5/5...5555
I need to find the delta between the two files & write to a new one... any examples please?