Use this tag for questions about removing duplicate data.
4
votes
3answers
57 views
Java: optimize hashset for large-scale duplicate detection
I am working on a project where I am processing a lot of tweets; the goal is to remove duplicates as I process them. I have the tweet IDs, which come in as strings of the format "166471306949304320"
...
0
votes
1answer
11 views
Notepad++ Regular Expression Remove Duplicate Emails
So Ive been trying to figure out a way to use regex(regular expression) to remove duplicate emails from a text file I have but I cant get anything working at all.
This is how the emails are in the ...
0
votes
1answer
25 views
how to remove rows with only one different column in mysql?
I have a table where for some rows, most of the columns are duplicated except for one column. I'm wondering how to select those rows and keep only one according to some requirements? Here's the table ...
-6
votes
0answers
42 views
Java student here needing some expert adice [closed]
Write a Java class that generates a random integer (between 1 and 250). Call the
class GenKeys. GenKeys should have a least one method that returns the integer
random number. Gen Keys should not ...
0
votes
0answers
19 views
Check for duplicate field values in Dynamic Table rows
On my quest to develop an easy to use, not so easy to programme user interface, I have come accross an issue of duplicate entries.
I would like to detect if a duplicate entry has been made and if so ...
0
votes
1answer
33 views
How do I remove validation duplication from a model?
Short of extracting shipping and billing addresses into an Address model, how can I remove this validation duplication?
I only want to validate the billing address if it's not the same as the ...
1
vote
4answers
35 views
Removing only alpha duplicates
In Python, I would like to remove duplicate letters from a string, but not numbers or spaces. I came up with:
result = []
seen = set()
for char in string:
if char not in seen:
...
0
votes
0answers
43 views
FileSystemWatcher - Reduce Multiple Event Raising (or Reduce Results of Multiple Events) in Visual Basic (VS 2012 V11)
I'm trying to reduce the number of events raised to one when the FileSystemWatcher changes (or at least display text in a textbox only once when an event is raised, by either removing the duplicate ...
0
votes
4answers
46 views
Remove Duplicates … With NULLs
In MS SQL Server I am trying to remove duplicates from a table with nulls. Que the groans. Lots and lots of NULLs. The bottom line is I need to retain one copy of any duplicate record with or without ...
1
vote
2answers
26 views
Java redrawing duplicate image
So ive been doing a bit of java recently and i have run into a bit of a problem. I have been playing around with 2d drawing and added an image to the project.
The problem is that when the window gets ...
0
votes
2answers
33 views
mysql - best way to avoid duplicates
I am very new to the database game so forgive my ignorance.
I am loading millions of rows into a simply structured MySQL database table
SQLStr = "LOAD DATA LOCAL INFILE 'f:/Smallscale/02 ...
0
votes
2answers
60 views
Remove Duplicate Entries in a C++ Vector
Just want to remove duplicates. Pool is vector<pair<string, int>> but I seem to miss some elements at the start of the vector somehow. Can anyone verify the logic of the removal? Thanks :)
...
0
votes
2answers
39 views
delete records from 2 tables after testing to see if they are duplicates
Editing someone else's SQL Server design here:
I have been tasked with removing duplicate rows from a database.
I have 2 tables: table1 and table2.
table1 has columns T1ID, and T1NAME
table2 has ...
0
votes
1answer
15 views
Avoid duplicate entries
I have a php code for a sign up form, it stores the details to a table(temp_members_db), then sends a confirmation code to the email entered. If the code is clicked, the details from temp_members_db ...
3
votes
4answers
81 views
How can I delete one of two perfectly identical rows?
I am cleaning out a database table without a primary key (I know, I know, what were they thinking?). I cannot add a primary key, because there is a duplicate in the column that would become the key. ...
0
votes
1answer
25 views
MySQL: What is the safest way to remove duplicate rows from a MySQL TABLE?
I have a MySQL TABLE. It contains mailing addresses we get from a data feed. But there are no customer records for the mailing addresses, so I don't have an easy way to match a customer record as a ...
0
votes
1answer
28 views
core data table view duplicating cells when re lunch application
I have a storybord wuth core data project with 1 entity named "Password" and 4 string attributes, the data is connected to a table view with fecthedResultsController and the sections are set by one of ...
0
votes
2answers
73 views
How to remove items from a List of Structs that exist in another List
public struct RegistryApp
{
public string VendorName;
public string Name;
public string Version;
}
I Have two List<RegistryApp> which hold all Applications currently installed on ...
3
votes
1answer
69 views
JS - jQuery dynamically add and remove fields
I am trying to make a dynamically duplicated field with jQuery :
The HTML (PHP) code :
<div id="widget_dup">
<p>
<textarea class="code" cols="50" rows="5" ...
1
vote
3answers
54 views
Ignoring errors in concurrent insertions
I have a string vector data containing items that I want to insert into a table named foos. It's possible that some of the elements in data already exist in the table, so I must watch out for those.
...
0
votes
1answer
37 views
How to remove duplicate values from a beautiful soup result set whilst preserving order?
I have a scenario where I am searching through values in a beautiful soup result set and treating them differently depending on their contents, eg:
for i in bs_result_set:
if 'this unique string' ...
0
votes
3answers
82 views
Deleting Duplicate Characters in a String
Hi I need to fix this code to delete characters that repeat immediately in the string. For example: If I type aaabbbcccdeeff, it has to return abcdef at the end. However on the computer in class it ...
1
vote
1answer
50 views
Core Data Duplicate Object Handeling
I have an application which allows users to create documents with a title and assign an author to it. I am trying to prevent duplicate objects from being entered into my core data database when new ...
0
votes
2answers
68 views
ArrayList printing duplicate vlaues
I want to check two arraylist and then insert to another arrayList. But when I do I get the duplicate values. How to solve this issue and removing duplicates.
I will get the median and check whether ...
0
votes
0answers
45 views
How to delete repeated row if exists in sqlite table
I'd like to know if it's possible to do the following using a single sqlite statement:
My table looks something like this:
IMAGE_ID | GROUP_ID
2 | 2
2 | 2
2 | 6
...
3
votes
2answers
106 views
remove duplicate row values across columns in a large data.frame
I have a data.frame
ID code1 code2 code3
A 143 143 144
A 35 453 35
A 35 15
B 46 46 45
B 12 43 765
C 255 455 344
C 343 ...
-1
votes
1answer
45 views
How can I prevent duplicates in prolog
My multiple solution problem arises due to Prolog's backtracking looping through the goals. Whilst I understand that, technically, each solution provided is correct, it is not useful to me. Is there a ...
2
votes
1answer
59 views
Fastest way to add new non-duplicated records into database A from database B(both are huge)
There're two sqlite databases A and B, both consist of 10+ million rows. The task is to read all records in B and add those new ones into A if they are not already existent there.
There're no ...
0
votes
2answers
47 views
Remove duplicated files in linux fs with ending e+$
I have big filesystem structure which contains many files with different extensions, for example
index.html
logo.png
package.zip
Many of those files has its duplicates with added e letter at the ...
0
votes
1answer
31 views
How can i update a column in a SQL table if the entry is a duplicate and keep the newest entry?
I have a database table with about 90 thousand entries. I need to update any older entries so i can move them to an archive table. I was able to find the duplicates where the count is greater than 1 ...
1
vote
1answer
112 views
SSRS group based on two columns
I have a report that displays a list of duplicate accounts based on our business rules. This works when one new account is matched with other existing accounts. Where I'm having trouble is when ...
0
votes
1answer
55 views
SplistItem.Delete() method stops while Deletion
I have created one application for deleting Duplicate SPListItem. The list has thousands of duplicate records. While deleting the item (say, approx. after 1000 records deletion). The Application ...
-2
votes
1answer
30 views
I have a duplicate account [closed]
I made a new soundcloud account not realizing I had made an old one a while back with some random email and password, neither of which I can remember. What can I do to get the old duplicate deleted?
2
votes
3answers
98 views
Removing duplicates from a List or HashSet in c#
I have a very simple test method that returns a List that has a number of duplicates, but when it did not I thought I'd try HashSet as that should remove duplicates, but it appears I need to override ...
0
votes
4answers
92 views
How To Prevent Duplicates In Object ArrayList
I have a custom object array list, the object must be in an array list however i have some duplicates in the list and i want to preform a check before i do an add to the list. How can this be ...
1
vote
0answers
42 views
Removing duplicates in Lithium/Freemarker
I am using Lithium custom components to create a list of users who have written the most Blog articles. I have a list of users who have written a blog article and then made a rest call to get the ...
1
vote
2answers
98 views
XSL - remove the duplicate node but keep the original
Need help in removing the duplicate node from the input xml using XSLT
This is how my XML looks like,
<?xml version="1.0"?>
<NodeA NodeAattr="123">
<NodeB ...
1
vote
1answer
58 views
SQL not including duplicate values on a combination of 2 columns
I am working on exercise 16 from sql-ex.ru. The problem asks the following:
Find the pairs of PC models having identical speeds and RAM.
As a result, each resulting pair is shown only once, i.e. (i, ...
0
votes
4answers
76 views
How to remove this duplicate code
I have this same code on two places:
if (amountUnit.ToLower().Contains("x"))
{
string[] amount = amountUnit.Split('x');
x = amount[0].Trim();
y = amount[1].Trim();
}
else
{
x = "1";
...
0
votes
2answers
36 views
Removing duplicate data from the query with different condition
In the view I've created this query,
SELECT DISTINCT
ClientCode, ClientName, Address1, Address2, City, Country, CreatedBy, CreatedDate
FROM
Contact
GROUP BY
ClientCode, ClientName, Address1, ...
1
vote
2answers
89 views
Is there an efficient algorithm for fuzzy deduplication of string lists? [duplicate]
For example, I have a long list of strings, each string has about 30-50 characters, and I want to remove strings that are similar to some other string in that list (leaving only one occurrence from a ...
1
vote
1answer
66 views
How to bulk insert only new rows in PostreSQL
I have list of products (3 million items) without IDs - only titles. But I don't know which titles already exist in DB. New products (about 2.9 million items) must be added into DB. After that I must ...
3
votes
6answers
82 views
How to process each item in an ordered list with duplicates only once in Python?
I have an ordered list of things to process that includes some duplicates and I only want to process the first occurrence. Presently, I'm doing it like this in Python v2.7:
seen = set()
for (value, ...
-3
votes
1answer
89 views
remove not-exact-same duplicated code in C++ [closed]
I am doing C++ coding on Linux.
I find some duplicated code, which can be removed by calling funtions.
But, the duplication in different parts of the c++ file is not exactly same.
How to degsign ...
0
votes
2answers
64 views
Delete rows from data frame whose column entry overlaps with that of another data frame
I have two data frames with genomic data and I need to delete all rows in data frame 1 whose entry in the “feature” column is equal to an entry in the “feature” column in a row of data frame 2.
df1 ...
0
votes
0answers
14 views
removing duplicate values from a single column for a value in a seond column
In r I have tried to remove duplicated values from a column specifying in which instances to make it NA
so after trying the duplicate functions
I tried to allocate the extra values NA for all other ...
0
votes
1answer
52 views
Ability to remove duplicates records returned from LEFT JOIN in many-to-many tables query
I have the following question to ask and maybe you can help with this. I did find similar questions asked here as well, but can't really make out effective way to make it work.
I'm working on this ...
0
votes
4answers
93 views
Remove duplicates without using additional buffer
I wrote a simple program to remove duplicates from a String without using any additional buffers. Can someone let me know if this is a good solution? I just want to know if there is any other solution ...
0
votes
2answers
248 views
SQL Delete duplicate rows with lowest number
I can't find appropriate way to delete duplicate keys in sql table with lowest number. If there is a duplicate rows with the same Number, I need to delete one of them.
For example
Key Number ...
0
votes
3answers
94 views
Array Duplicate Elimination with c#?
I have a program here that need some improvements. This Program inputs 5 elements in an Array and Removes if any duplicates. It works but the problem is that it sets every duplicate to zero. I don't ...

