The duplicate-data tag has no wiki summary.
1
vote
2answers
56 views
SQL Server : find duplicates in a table based on values in a single column
I have a SQL Server table with the following fields and sample data:
ID employeename
1 Jane
2 Peter
3 David
4 Jane
5 Peter
6 Jane
The ID column has unique values for each row.
...
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 ...
-2
votes
1answer
46 views
My Website content automatically is displayed two times [closed]
i am having problems with my website recently. It is a strange problem. have a look at
[www.leostrideconnect.com]
The webpage's content is displayer two times in a row. all the content is displayed ...
0
votes
2answers
44 views
how to prevent duplicate records in database
Question:
How do I prevent two different admin users of a website from creating a customer record with the same customer id.
Background information:
The website I'm working with autogenerates a ...
0
votes
0answers
55 views
SQL to join or duplicate data? [closed]
I've been coding for databases off and on for 15 years, but I am hardly a guru. What is the rule of thumb regarding whether you inner join or simply duplicate data. For example:
100 tables have a fk ...
0
votes
1answer
60 views
CRM 2011 - Enabling “BIT”-fields (two options) in a Duplicate Detection Rule
We have a customer who wants to create a "Duplicate Detection Rule" on four fields and one of them is a "Bit"-field (two options). But when we create the "Duplicate Detection Rule" we can't select ...
0
votes
2answers
126 views
oracle sql query to return rows by eliminate duplicates
I am struck at the below scenario. need your help in modify my query based on the below sample data. My objective is to create a EVENT AND EVENT_LOW using the data available from TEM_GT and TXN table.
...
0
votes
1answer
58 views
Best method to deduplicate people records in Rails
I am writing a rails app with a Person model that looks something like this:
create_table "people", :force => true do |t|
t.string "first_name"
t.string "last_name"
t.string ...
0
votes
1answer
163 views
Knockout.js applyBindings twice duplicate result
HTML
<table cellpadding="0" cellspacing="0" border="0">
<thead>
<tr><th width="483"><span>Product Name</span></th></tr>
</thead>
<tbody ...
4
votes
1answer
622 views
Infinite scroll (Waypoints) with jQuery Mobile, Back button and remote script called twice
I'm building a jQuery Mobile site for future use with PhoneGap, so all my content is loaded via AJAX pulling data from remote PHP/MySQL stuff
In the home page I initially load only first 10 news; ...
0
votes
0answers
18 views
Is storing data that can be deduced by querying other data considered duplication of data?
For example. Say I have a library system. Each book can be loaned out and the history of loans is stored in a Loan table which holds book_id, borrower_id, time_taken_out, time_due_back, time_returned.
...
0
votes
0answers
13 views
Joomla carats two links to the same articale [closed]
I have a Joomla 2.58 site, and wehen i create a new article and a new menue item for it and then publish it, it gets two links, i found out about the second link thru my web master tools
the first ...
0
votes
1answer
20 views
missing the database
I have a problem with my database which is base on access. when i try to use insert command, all records send to mydatabase.mdb in root folder, but when I want to read from database, records come from ...
-5
votes
1answer
52 views
Duplicate Phone number [closed]
Because of poor data entry policies, there are a lot of duplicate phone numbers to the same customers.
I need to write a query that will list all customers with the same phone number.
Thanks for your ...
-3
votes
4answers
500 views
Finding duplicate numbers in array [duplicate]
The problem with this code is that it will print out 5 9 9, instead of just 5,9. Because there is a third 9 in the array. What am I missing?
Edit: I need to write a function that will get the ...
1
vote
4answers
48 views
How to view duplicated records with one or more NA's?
my dataset looks like following:
ID Score
A1 60
A1 50
A1 NA
B1 30
B1 33
C1 48
C1 39
D1 21
D1 38
D1 NA
I would like to see duplicated records which has NA's. Such as:
A1 60
A1 50
A1 NA
D1 21
D1 38
...
0
votes
0answers
45 views
Delete Duplicate Records Based On Two Different Field Values
I have read a considerable amount of posts but can't seem to find a post that is similar to my situation regarding duplicate records. The vast majority of duplicate posts are to resolutions to simply ...
0
votes
1answer
47 views
Want to copy SQL Database info and paste into new Activity
I have two activities. One that shows the user his Database info for a particular entry, and from there he can choose to edit that entry.
I want to add the feature of copying the existing data and ...
0
votes
3answers
214 views
skip duplicate entry in foreach mysql
hi friends i need to skip a duplicate entries in foreach and than continue on remaining ones please tell me how can i do this
foreach($arr as $key=>$arr1)
{
echo "<pre>";
...
1
vote
1answer
283 views
SSIS 2008 Fuzzy grouping to identify duplicate contacts but ignoring punctuation
im using SSIS in visual studio 2008 to perform some fuzzy grouping on a customer table.
columns
ID
Name
Email
etc
I have some duplicate customers in the table with the same email address im ...
1
vote
1answer
92 views
ASP.net Entity Framework Rows Returning Duplicated
I am getting data from these two tables using linq to entities, relationships exist between tables on primary foriegn key basis, result set is coming but every row is repeating multiple times in reult ...
2
votes
3answers
164 views
Need a way to intercept only a Duplicate key exception in MSSQL
Let's imagine that you have got a unique index constraint violation in your MSSQL 2008 database like this:
Violation of PRIMARY KEY constraint 'PK_ManufacturerCode'. Cannot insert duplicate key in ...
2
votes
0answers
221 views
Restkit 0.20 pre4 core data issue
{"status":"ok",
"count":5,
"count_total":165,
"pages":33,
"posts":[{ "id":2971,
"status":"publish",
"title":"title1",
"content":"",
"date":"date",
...
2
votes
3answers
72 views
Duplicate Removal in a list of list
[
[0.074, 0.073, 0.072, 0.03, 0.029, 0.024, 0.021, 0.02],
[0.02, 0.02, 0.015],
[0.026, 0.026, 0.02, 0.02, 0.02, 0.015],
[0.021, 0.021, 0.02, 0.017], [0.077, 0.076, 0.074, 0.055, 0.045, 0.021],
...
0
votes
2answers
236 views
Get duplicate records before bulkcopy to database
I am now copying data from one client database DB2 to main database DB1 by using SqlBulkCopy.
DataTable dtTable = new DataTable();
sqlDB2DataAdapter.Fill(dtTable); //select * from tblOrdersDB2
...
0
votes
1answer
441 views
Pull to refresh and list pagging duplicating records on listing page
I am new for sencha touch. I have a Listing page which using Ext.plugin.PullRefresh and Ext.plugin.ListPaging plugin to refresh my page, but I'm having an issue with duplicate items appearing after I ...
0
votes
2answers
70 views
insert and exclude duplicates in mysql
I have 2 equal databases (A and B) with one table each running in separate offline machines.
Every day I export their data (as csv) and "merge" it into a 3rd database (C). I first process A, then B ...
-1
votes
1answer
225 views
Avoid duplicate values by comparing two datatable [duplicate]
Possible Duplicate:
Comparing two datatable and getting the duplicate values
I have two DataTable t1 and t2.
t1 has 2 fields (SPARTE_ID, SPARTE both as string)
t2 has 2 fields (sparte_id, ...
0
votes
0answers
81 views
H2 SQL Recovery tool creates many copies of rows
I've had a problem with my H2 database and had to use the Recovery tools, the problem is that when I use the RunScript the database generated by that have many duplicated rows, including the index!
In ...
0
votes
1answer
50 views
mysql extra count field for each row
I have a query here, anyone can help me to count the total duplicated fields?
SELECT *
FROM item
INNER JOIN itemgroup on item.itemgroupid = itemgroup.itemgroupid
INNER JOIN status on ...
0
votes
1answer
275 views
SQL query to show repeating data from child records in columns
I have the following tables in a SQL Server 2000 database:
Master
MasterID | Details | [other fields]
=====================================
PK (int) | Free text | ...
LogTable
LogID | ...
0
votes
2answers
126 views
Two records that have same data cell value in one field but different in another, query to return only one based on criteria
I need some help on my mysql syntax.
My table has user information but has the same order number for both ship to and bill to.
Sometimes people choose to ship to their billing address; I only need ...
0
votes
1answer
70 views
Wordpress main website and mobile website duplicate content.
Basically a client has asked for his WordPress website to be turned into a mobile website as well. I have never attempted this and know nothing about SEO.
However the issue has arisen that this may ...
0
votes
1answer
71 views
NSPasteboard readObjectsForClasses:options: returns value twice
Right to the point, then:
First snippet (AppDelegate):
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
//...code taken out...
[NSEvent ...
1
vote
0answers
148 views
Restkit-Core data: Duplicate objects in ObjectStore and Backend when post
I have a problem when using Restkit (0.10.3)+core data on an iOS 5.0 app. I have a entity ToDo mapped as follow:
RKManagedObjectMapping* map = [self mappingInObjectStore];
[map ...
5
votes
1answer
142 views
I would like to understand a Microsoft Access wizard-generated query
Suppose I have a table named tbl_med, which has six fields: [nom_lab], [nom_desc], [nom_apres], [date_vig], [cod_med], [vr_pmc].
I want an MS Access SQL query that will:
Find duplicated records in ...
0
votes
0answers
28 views
I need to locate duplicate file names with a different suffix
I work in a Windows environment. I'm looking for a way to scan all sub directories to locate duplicate files. Our naming scheme is LC2150199e-11728.mpg. We could feasibly have another file in the same ...
0
votes
1answer
106 views
Duplicate entries from database
ON closer inspection the problem is solved if I remove the comment table join, but obviously this isn't ideal help appreciated!!
I'm trying to write a blog with Codeigniter. At the moment i'm ...
3
votes
2answers
2k views
Insert … on duplicate key update nothing using MySQL
My problem is that I have multiple unique keys on a table.
Insert ignore is not an option because it suppresses the errors.
MySQL has no support for any type of conditionals outside a statement (ex. ...
1
vote
0answers
213 views
da.update command vb.net duplicates data
I have two sections of code. The first one updates data in an access database table called tbl_Customers. It works fine:
Private Sub UpdateRecord()
Dim imgLocation As String
imgLocation = ...
0
votes
0answers
90 views
jquery - checking if there are duplicated paired values in a table form
I have a form like this :
<form>
<table id="table1">
<tr>
<td><input type="text" id="val1" name="code[1][data1]" value="abc" /></td>//this need to be check
...
0
votes
2answers
140 views
Repeated pattern inside URL [closed]
Could someone help us with a regular expression in order to detect repeated patterns inside a URL string? The goal is obviously to detect malformed weird URLs.
For example, the following URLs are ...
-1
votes
1answer
109 views
Find and replace unique elements in tuples in a python list [closed]
I have 2 lists :
initial_list = [(54, 'A'), (55, 'B'), (56, 'C')]
temp_lst = [(54, 'new value A'), (55, 'False'), (56, 'new value'),
(False, 'D'), (False, 'E')]
I want to change old ...
2
votes
1answer
214 views
removing duplicate entries— variant in matlab
I have A matrix part of which looks like this :
4080530 92 -- rid of this
4085908 92 -- keep this
4086589 93 -- rid
4091453 93 -- rid
4104393 93 -- rid
4112841 93 -- rid
4122958 93 -- rid
4130815 93 ...
1
vote
0answers
41 views
How to avoid duplicate userid in silverlight with wcf ria serivces
I am beginner and developing a silverlight navigation application using RIA services with SQL Server 2008.
I have a 'Registration' table where initially users request for membership are stored. The ...
1
vote
1answer
2k views
Cognos Report Studio Total of Column based on Distinct values of Column2
Cognos by default suppress duplicate/identical records. Duplicate rows do not appear in the report, but summaries are performed on all rows - including the duplicates that were eliminated.
To ...
2
votes
3answers
832 views
remove duplicate rows based on conditions from multiple columns in r
I have a data set I would like to remove the rows of data that have duplicate information in 4 different columns.
foo<- data.frame(g1 = c("1","0","0","1","1"), v1 = c("7","5","4","4","3"), v2 = ...
0
votes
1answer
53 views
display duplicate records in mysql
I have a table(user_admin_password). I am using this query to get the records.
SELECT user_key,admin_status,count(*)
FROM user_admin_status
GROUP BY
user_key,admin_status having count(*) > 1 ...
0
votes
1answer
54 views
Printing an array with some MySQL records
Not sure if the subject is suitable for the question.
I have a table which holds some data with year info as shown below.
table mydata
+----+------------+----------+
| id | year | some_data|
...
0
votes
1answer
66 views
Configure fields for considering duplicates
Consider a Solr index with the following fields:
<fields>
<field name="id" type="uuid" indexed="true" stored="true" default="0"/>
<field name="user" stored="true" type="string" ...



