I converted database from text file to temporary access table. I want to append data from temporary table to original table. In temporary file every record got another duplicate data.
My orginal tables are Employee info table and Employee details table. When I append from temporary file to Empoyee info table it is appending duplicate records also. Like 1 record JOHNs is sick 2 record JOHN is in vacation. I need to append JOHN name only one time in Employee info table.How can i eliminate these duplicate records. Distinct is not working.
Help me.
My orginal tables are Employee info table and Employee details table. When I append from temporary file to Empoyee info table it is appending duplicate records also. Like 1 record JOHNs is sick 2 record JOHN is in vacation. I need to append JOHN name only one time in Employee info table.How can i eliminate these duplicate records. Distinct is not working.
Help me.