Good morning everyone!
Hi need some help!
I am having problem findint the duplicate information in a table.
The table I have as 3 columns. All fields are integer fields.
The problem I have is that none of the column as a primary key.
I wanted to find out if I was having duplicate information in the table. The way I did that was by creating a temporary table with the same configuration as the original table and adding an index on it that disregard the duplicate. I found 169 entry in it.
The problem I have is that I can not take the new list and replace the old list with it.
The table description is as follow.
Col 1 represent an objects ID
Col 2 represent a user or group.
Col 3 represent the security apply to that user or group on the object.
My filter was created on col 1 and 2 as they should be unique and col 3 could be different. If I use the new table and replace the content of the old table with it, I may handup changing the security of the object.
How can I compate the two to return only the duplicated information?
Hi need some help!
I am having problem findint the duplicate information in a table.
The table I have as 3 columns. All fields are integer fields.
The problem I have is that none of the column as a primary key.
I wanted to find out if I was having duplicate information in the table. The way I did that was by creating a temporary table with the same configuration as the original table and adding an index on it that disregard the duplicate. I found 169 entry in it.
The problem I have is that I can not take the new list and replace the old list with it.
The table description is as follow.
Col 1 represent an objects ID
Col 2 represent a user or group.
Col 3 represent the security apply to that user or group on the object.
My filter was created on col 1 and 2 as they should be unique and col 3 could be different. If I use the new table and replace the content of the old table with it, I may handup changing the security of the object.
How can I compate the two to return only the duplicated information?