Let me first explain the background; my application is running on a sharepoint so it is rather slow with "large" tables.
Visistors of our sailingclub are booked into the system and we use data of the visitors if the visitor was here before.
Some visitors come up to ten times a year; they have then 10 records with the same name and boatname but of course with different other data.
Now I want to make the table smaller by removing all the extra records; so the response of the sharepoint improves a little. I have now up to 5000 records (for access no problem, but for the sharepoint....)
So my table (it has also a unique id number) is called "Passanten" and the field which are equal are: "Naam" and "Naam Boot"
Now I want to remove all the records with have same "Naam" and "Naam boot" on one occurce left offcourse:
So an example:
1 xxx 12345
2 yyy 2345
3 zzz 0000
4 xxx 456jj
5 xxx 12345 to be removed
6 xxx 12345 to be removed
7 xxx hftre
8 yyy 2345 to be romoved
In this example I only want to remove the records which are indicated or others as long 1 record of a set is staying
What is the easiest way?
Visistors of our sailingclub are booked into the system and we use data of the visitors if the visitor was here before.
Some visitors come up to ten times a year; they have then 10 records with the same name and boatname but of course with different other data.
Now I want to make the table smaller by removing all the extra records; so the response of the sharepoint improves a little. I have now up to 5000 records (for access no problem, but for the sharepoint....)
So my table (it has also a unique id number) is called "Passanten" and the field which are equal are: "Naam" and "Naam Boot"
Now I want to remove all the records with have same "Naam" and "Naam boot" on one occurce left offcourse:
So an example:
1 xxx 12345
2 yyy 2345
3 zzz 0000
4 xxx 456jj
5 xxx 12345 to be removed
6 xxx 12345 to be removed
7 xxx hftre
8 yyy 2345 to be romoved
In this example I only want to remove the records which are indicated or others as long 1 record of a set is staying
What is the easiest way?