Page 1 of 1

which match strategy do i need to use

Posted: Thu Jan 06, 2005 11:18 am
by DSkkk
hi,

i have the following scenario.
i have an incoming source file which has multiple records which r not duplicates but consist of transaction data for the same person. And i have the existing file which has records of unique persons.
i need to match both the files. which MATCH strategy do i need to use.
match sets or geomatch multiple????

and when i do that which shud b file A and which shud b File B
od give me some idea

thanks in advance.

Posted: Thu Jan 06, 2005 6:06 pm
by vmcburney
The transaction file should be File A and the person file should be File B. Your objective I assume is to read in transactions and attach to them additional personnel details from the person file.

What is your matching field? Is it a persons name or is it some type of ID field? How unique is your "unique" person file. For example how do you uniquelly identify "John Smith" when there are several people who may have that name.

which match strategy do i need to use

Posted: Thu Jan 06, 2005 7:24 pm
by DSkkk
hi, thanks for ur reply.

actually i have 2 files. the matching fields in the file is the Date_of_birth and SSN(number). the file A (say the transaction file) has say for example 10 records belonging to a person. But what i thought, e sacond file say File B which i said was unique is nt so. like for a single person there are may b more than one record in which all the columns consist of the same information excepting one column which is RXID.
so the file B is also not unique.
i eed to match the two files and append the concerned columns to the file existing

the transactions file has 90000 recs and the file b has 1900 recs.

thanks!

Re: which match strategy do i need to use

Posted: Sun Jan 09, 2005 4:12 pm
by JamasE
DSkkk wrote: there are may b more than one record in which all the columns consist of the same information excepting one column which is RXID.
so the file B is also not unique.
i eed to match the two files and append the concerned columns to the file existing
Do you need the RXID column of file b? Or a particular record associated with a particular RXID (e.g. the max RXID)? Dependingly, it would be worth cleaning up file b first to be unique records.

Geomatch mutiple and geomatch duplicate will allow linking to more than one file b record, the difference being in geomatch multiple that duplicates only count if they have the same weight. (If RXID isn't used, then they should). You can then use geomatch multiple to link to all file b records. Remember, though, that the duplicate file b records will be in the DUPB extract file, not in the MATCH extract file.

(Geomatch plain will just link to one file b record and ignore any duplicates)

(I used geomatch duplicate to let me know about my false positives in one case and because they were valid links in another.)

Cheers,
Jamas

which match strategy do i need to use

Posted: Mon Jan 10, 2005 7:25 pm
by DSkkk
thanks James,

i have got the olution.i have used the geomatch multiple strategy.
thank u