Questions tagged [duplication]
180 questions
0
votes
2 answers
Why do my nodes duplicate when I select a child node?
My second ASP.NET question. Still going through the ropes...
So every time I click on a child node the root nodes collapse and both the roots and children duplicate. I have absolutely no idea why. This appears to happen across all browsers I am…

Cian
- 71
- 1
- 2
- 11
0
votes
2 answers
all combinations of two and remove if they are same in R
I would like your experise on this example. I need to have all combinations of two vectors and remove if they are same and remove one copy if they are duplicated.
v1 <- c("AS", "KS", "AZ", "AL", "MO")
v2 <- c("AZ", "KZ", "LM", "AZ", "ZK")
I woule…

user3543621
- 15
- 7
0
votes
0 answers
Venmo me button duplicate
I've embedded the new Venmo Me button into my website, but for some reason the button shows up with many duplicates. It seems the duplication error occurs based on the number of dividers (div, section, p, etc.) - I get an extra button for each one I…
0
votes
1 answer
How to output error for double entry PHP MVC
I am using Codeigniter and I have created a code that checks if there is the same entry already in the database. but i dont know how i will output the error message. the boolean is not working.
VIEW
Add New Service: For single upload.
0
votes
0 answers
Form action duplicate whole page
I try to use a html form to call a php script. The link to the from is: http://scryptpower.de/login. Everytime I click "Senden" the php script should be called, but everytime I click the button, the script location shows me in the url, but the…

Nigho
- 13
- 1
- 4
0
votes
1 answer
SEO and Content - Duplicated content
I'm working on an application which contents are taken from books and I can find similar content on competitor site. As I'm not copying their content but the content from books I have this fear that it could be marked as duplicated content. How can…

user3482036
- 109
- 11
0
votes
1 answer
MySQL deleting duplicates
I updated an old site a couple of months ago moving from a Joomla install to a bespoke system. In order to convert the data from the Joomla tables to the new format I wrote various php scripts which stepped through the old records by section,…

PeteSE4
- 309
- 1
- 4
- 21
0
votes
1 answer
How to avoid the multiple use of 'unique' to filter inconsitent datasets?
I have two corresponded (has a relation and has the same dimension) dataset:
Time
Salinity
Some data in Time dataset are duplicated.
I can remove the duplicate value by:
Time_new=unique(Time,'rows');
But it will not correspond to the Salinity…

Santosa Sandy
- 217
- 6
- 20
0
votes
1 answer
Doctrine Extension Slug : avoid duplication
I'm using doctrine and sf2 and i have a question about the slug extension :
Is there any way to generate it before the flush ?
Let say i have a Brand Entity:
/**
* Brand
*
* @ORM\Table(indexes={@ORM\Index(name="name_idx", columns={"name"})})
*…

Cyril Souillard
- 1
- 1
0
votes
2 answers
How can I recover formatting of application's info.plist in Xcode?
I duplicated default build target.
Some code files are duplicated also.
Problem is, duplicated info.plist file is not formatted by Xcode.
I don't think this is normal. Any workaround?
Or any way to specify formatting of plist? (which may format…

eonil
- 83,476
- 81
- 317
- 516
0
votes
1 answer
Duplicate app logo when downloading Android App
Whenever I run an Android app from eclipse and downloaded into a phone,there will be a duplication of the application I downloaded. For instance my app is called "MyAndroidApp" and when I run it into my phone, there is two application of…

ActiveUser
- 39
- 2
- 5
0
votes
3 answers
Placing the same ASP.NET control in different areas of a page
I have some code that I've inherited, and it's not the greatest in the world, but it works, with one small exception:
This page is a directory search, it has controls identified by record ID, however there exists a situation where there can be more…

Tim S
- 53
- 1
- 6
0
votes
2 answers
Trying to find duplication in records where address is different only in the one field and only by a certain number
I have a table of listings that has NAP fields and I wanted to find duplication within it - specifically where everything is the same except the house number (within 2 or 3 digits).
My table looks something like this:
Name Housenumber Streetname …

user2755209
- 85
- 9
0
votes
1 answer
Uniqueness constraint on varchar(4000) column
I am storing URLs in a column having varchar(4000) data type. I want to enforce uniqueness constraint on this column but not able to do so because 4000 is way beyond max limit.
Is there any way to enforce uniqueness on such columns ?

Learn More
- 1,535
- 4
- 29
- 51
0
votes
3 answers
Avoid duplication of values in a SELECT query in PostgreSQL
I have a table named product which contains two columns:
id name
1 p1
2 p2
3 p1
4 p3
5 p4
I run the following query:
SELECT DISTINCT id, name FROM product;
As a result, PostgreSQL gives me the following output:
id name
1 p1
2 p2
3 …

Shyam Solanki
- 87
- 11