Tagged Questions

0
votes
2answers
14 views

How to make a list of unique items from a column w/ repeats in PHP SQL

Say I have a table that has a column which goes Column B apple apple apple orange apple orange orange grapes grapes mango mango orange And I want to query it in such a way that …
0
votes
3answers
36 views

How to declare a range overlaping constraint in PosgreSQL database?

Let's say we are having a table with this definition: range ( id bigint primary key, colourId int references colour(id), smellId int references smell(id), from bigint, t …
0
votes
2answers
38 views

Grails: String(username) as primary key, but save and get id string(username) with ignorecase?

I am using a string "username" as the primary-key of a table, But when saving and getting the column with the username id I want the case to be ignored so that new users can't try …
1
vote
3answers
46 views

Unique value in StackTrace?

Background: I have written a generic logging library in .NET 3.5. Basically the developer needs to call the Begin() method at the beginning of their method and the End() method at …
0
votes
0answers
15 views

Fluent-NHibernate: How to a create a many-to-many relationship with a unique contraint

Hi. I want to create a many to many relationship, but I want to have in the new table(MessageReceivers) a unique contraint on both columns (AdvanceMessageId,UserId): mapping.HasMa …
0
votes
1answer
28 views

setting up unique constraint on referenced collumns in oracle 10g xe

hi, i have the following situation. table looks like this CREATE TABLE CompetitionsLanguages ( competition REF CompetitionType SCOPE IS Competitions, language REF LanguageTyp …
0
votes
6answers
233 views

12 Digit Unique ID - Code reliability

Guys, I wanted a number that would remain unique for a day (24 hours). Following is the code that I came up with; I was wondering about its fallacies/possible risks; 'I believe' t …
0
votes
1answer
22 views

SQL: count of replica entries in a column

Simplistically I have a table that looks like this: ColA | ColB | -----+------+ EE34 | Woo | ER56 | fro | EE34 | eco | QW34 | Sddg | EE34 | zoo | ER56 | safe | I need a sele …
0
votes
2answers
34 views

handling mysql constraint errors

Hi! I tried searching for a solution in this website but I can't seem to find any. I needed to find a way to know which field in my table is causing the constraint error.. In my …
1
vote
2answers
64 views

.NET collection that throws an exception when a duplicate is added

Is there a collection (apart from Dictionary) in the .NET framework (3.5) that throws an exception when a duplicate is added? HashSet does not throw an exception here: HashSet&lt …
2
votes
3answers
69 views

Data-structure that stores unique elements but answers queries for another ordering in C++

Hi, is there a data structure, which stores its elements uniquely (for a given compare-Functor) but answers queries for the highest element in that data structure with respect to …
0
votes
4answers
81 views

Preventing duplicate matches in RegEx

The following code string expression = "(\\{[0-9]+\\})"; RegexOptions options = ((RegexOptions.IgnorePatternWhitespace | RegexOptions.Multiline) | RegexOptions.IgnoreCase); Regex …
1
vote
2answers
52 views

mysql 7columns pk vs. 1 column md5 unique constraint

Hi, i have a very large table which is currently approx 70M rows and growing daily by the thousands , this schema is tipping over every day now so i'm moving to a partitioned table …
1
vote
3answers
87 views

[Java] Find a Database table’s unique constraint

Hi, I'm trying to find the unique constraints of a table using Java (on an Oracle Database, but that should make no difference). I found a way to discover the Primary Keys of a …
2
votes
7answers
116 views

PHP short unique ID generation using auto_increment?

I would like to generate a short, unique ID without having to check for collisions. I currently do something like this, but the ID I currently generate is random and checking for …

1 2 3 4 5 9 next
15 30 50 per page