Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
3answers
5k views

Is the Sql Server Unique Key also an Index?

I've got a column in a table (eg. UserName) which I want to make sure is unique. So I create a unique key for that column and call it IX_Users_UserName. Now, if I do lots of searching for users based ...
11
votes
2answers
5k views

mysql: INSERT … ON DUPLICATE KEY (Do nothing, just don't complain to the error )

I have a table with a unique key for two columns: CREATE TABLE `xpo`.`user_permanent_gift` ( `id` INT UNSIGNED NOT NULL AUTO_INCREMENT , `fb_user_id` INT UNSIGNED NOT NULL , `gift_id` INT UNSIGNED ...
7
votes
2answers
2k views

Unique keys in Entity Framework 4

An existing DB schema has unique, non-primary, keys, and some foreign keys that rely on them. Is it possible to define unique keys, which are not primary keys, in Entity Framework v4? How?
6
votes
0answers
247 views

Fluent NHibernate 3 uniquekey custom constraint name

I am trying to give a custom Unique Constraint Name as follows: Map(x => x.Name).UniqueKey("MY_CONSTRAINT_NAME").Column("FUNCTION_NAME"); The Field is mapped with a unique constraint but the ...
6
votes
3answers
200 views

Unique key on whole mysql table?

Suppose I have a mysql table with two columns: A and B. Is it possible to have a unique key so that I can only insert a value only once in either A or B (once in the whole table)? So if column A ...
6
votes
5answers
489 views

Add new keys to a dictionary while incrementing existing values

I am processing a CSV file and counting the unique values of column 4. So far I have coded this three ways. One uses "if key in dictionary", the second traps the KeyError and the third uses ...
5
votes
1answer
164 views

Oracle unique constraint and unique index question

Could someone clarify what is the purpose of having unique index without unique constraint (Oracle)? For example, create table test22(id int , id1 int, tmp varchar(20)); create unique index ...
5
votes
4answers
2k views

What's the difference between Primary Key, Unique Key and Index in MySQL?

When should I use KEY, PRIMARY KEY, UNIQUE KEY and INDEX?
5
votes
5answers
2k views

MySQL Question - Unique Key Not functioning correctly, or am I misunderstanding?

I'm trying to create a relation where any of four different parts may be included, but any collection of the same parts should be handled as unique. Example: An assignment must have an assigned ...
4
votes
2answers
2k views

Unique key with EF code first

I have a following model in my project public class Category { public Guid ID { get; set; } [Required(ErrorMessage = "Title cannot be empty")] public string Title { get; set; } } and ...
4
votes
3answers
595 views

Is it bad to use user name as primary key in database design?

I was told by a friend: What unique key do you use? I hope you are not saving the entire user name --- this will use up too much table space! Assign an unique userID to each (unique) ...
3
votes
2answers
305 views

Pros/Cons of and ways to implement globally unique identifier in relational database?

Regarding the first part of my question: I was recently asking myself what are the benefits and trade-offs of having a unique identifier for certain tables in a relational database. Just as an ...
3
votes
1answer
433 views

Primary Key Identity Value Increments On Unique Key Constraint Violation

I have a SqlServer 2008 table which has a Primary Key (IsIdentity=Yes) and three other fields that make up a Unique Key constraint. In addition I have a store procedure that inserts a record into the ...
3
votes
5answers
92 views

how can i have a unique column in many tables

I have ten or more(i don't know) tables that have a column named foo with same datatype. how can i tell sql that values in all the tables should be unique. I mean If(i have value "1" in table1) I ...
2
votes
2answers
94 views

add unique id to php mysql upload

Is there a quick method to add a unique id to a php mysql upload- I have scrolled through these forums but was hoping there is a much simpler method to achieve my aim. Essentially, I have an upload ...
2
votes
1answer
115 views

PostgreSQL - Duplicate Unique Key

On my table I have a secondary unique key labeled md5. Before inserting, I check to see if the MD5 exists, and if not, insert it, as shown below: -- Attempt to find this item SELECT INTO oResults ...
2
votes
3answers
85 views

Objects to strings, unique keys in PHP

I was reading around about the Observer pattern, and found a dated article. Having read through, I noticed an interesting mention in this paragraph: The key methods to look at here are attach(), ...
2
votes
2answers
107 views

MySQL Key Constraint

I've got a MySQL table with, among other things, two fields: a (int) and b (string) using the InnoDB engine. I want to structure it so that a particular value of b can appear an arbitrary number of ...
2
votes
1answer
323 views

Primary key and unique key in django

I had a custom primary key that need to be set up on a particular data in a model. This was not enough, as an attempt to insert a duplicate number succeeded. So now when i replace primary_key=True ...
2
votes
2answers
404 views

Finding objects in Core Data by array attribute, performantly in >10k elements

Short: I need to find core data objects by a key, which holds a unique immutable array (fixed length, but chosen at runtime) of arbitrary objects (for which not only element membership, but also ...
2
votes
3answers
275 views

MySQL Set NULLABLE Unique Field

I've a case where I need to store twitter username, email, and some other field to be unique. However, I can only set twitter username later. Not on registration process. How can I handle this in SQL? ...
2
votes
1answer
92 views

Colorize Unique Elements in XML using XSLT

I currently have an XML document which basically consists of several conversations between people just like an IM conversation. I have each conversation displaying how I want to so far, except I ...
2
votes
5answers
500 views

What is the difference b/w Primary Key and Unique Key

I tried to find it out in google but not satisfactory answer is given out there.Can anybody explain the solid difference. actually if Primary key is used to select data uniquely then what is the need ...
2
votes
4answers
888 views

Creating a unique key based on file content in python

I got many, many files to be uploaded to the server, and I just want a way to avoid duplicates. Thus, generating a unique and small key value from a big string seemed something that a checksum was ...
2
votes
2answers
774 views

How to enforce unique-field validation in MVC

I am in the way building some MVC Application and I really love the Data Annotations support in MVC. The build in support is good enough to enforce simple validation checkup. I wonder, how to ...
2
votes
3answers
549 views

Fastest way to compute a “Visual” checksum of an image

I'm looking to create an ID system for cataloging images. I can't use md5() since that will change if I alter the EXIF tags of the image. I am currently using the SHA1 checksum computed by ...
2
votes
1answer
327 views

How would you skip vulgar words using base 36 against an Id column in sql server 08?

I need the shortest possible Ids so I figure base-36 would work wonderful for this. The thought is I'll just use an auto-incrementing Id field as the primary key and then create a base-36 userid. ...
2
votes
3answers
728 views

Create hexadecimal number in SQL

I want to generate unique hexadecimal numbers in SQL. How can I do this? If you know how to generate in c# please also include that.
1
vote
1answer
21 views

unique or semiunique module ID or Name for any Linux Kernel Module

Is there any way for me to query for an ID or name that could be used to identify a loaded Linux kernel module from within the module. ex: within sample.ko int id = get_module_id(???); printk("%d", ...
1
vote
1answer
36 views

PostgreSQL: is it possible to provide custom name for PRIMARY KEY or UNIQUE?

When I write: CREATE TABLE accounts ( username varchar(64) PRIMARY KEY, I get primary key named: accounts_pkey Is it possible to assign my own custom name, for instance ...
1
vote
1answer
54 views

GUID + Auto-Increment ID = Slow Performance?

One of Jeff Atwood's cons of using a GUID is that it is Cumbersome to debug (where userid='{BAE7DF4-DDF-3RG-5TY3E3RF456AS10}') And I agree. I was thinking, now that 16-byte ID's are no longer ...
1
vote
6answers
54 views

MySQL: additional id column vs performance

Table1 has 3 columns: id (autoincrement), citynumber (unique), description (varchar(1000)). Column id is never used in queries. It's just used for my convenience (to see how the table grows, it's ...
1
vote
2answers
50 views

MySQL dilemma: composite unique key across tables

I am attempting to implement an "extension" table structure for some stats that I am gathering from multiple sources. My "parent" table looks something like this: `test_parent` ( `id` int(11) ...
1
vote
1answer
108 views

Trigger to generate unique md5 hash before insert

I'm trying to create a trigger that will associate an unique random string to every record inserted in a table. So far I created a trigger, on before insert, that will generate and add the hash to ...
1
vote
2answers
276 views

Entity Framework ObjectContext.SaveChanges fails on unique key column update

Consider very simple database table: CREATE TABLE UkTest( id int NOT NULL, uk int NOT NULL ) Primary Key on id Unique Key on uk Then add 2 rows: INSERT INTO UkTest (id,uk) VALUES(1,1); INSERT ...
1
vote
2answers
75 views

Making varchar(500) datacolumn unique

I have a requirement to make a column of varchar(500) unique. Putting unique constraint would not work as it crosses the size limit of unique. Then, what would be the best strategy to make column ...
1
vote
3answers
59 views

Duplicate data while using a unique key

For my table I've defined a unique index on activity_id-actor_id-end_date; mysql> show keys from sg_activity_property; ...
1
vote
7answers
336 views

Is there a programmatic way to get a mobile device's unique identifier?

I need a way to know the uniqueness per user, whether it be for iPhone, Android, or Windows Phone devices. If there is no universal way, i was wondering if saving the phone number would be legitimate ...
1
vote
2answers
121 views

MySQL unique composite constraint not working

I've created a unique index like this: ALTER TABLE items ADD UNIQUE INDEX uni_item (warehouse_id, width, height, depth, weight); but I still can add duplicate items, why is this not working? ...
1
vote
1answer
59 views

UNIQUE KEY in any order

I am using UNIQUE KEY for MYSQL for one table. However, I have a table which has "user1,user2". I created a UNIQUE KEY but the problem is I want the UNIQUE KEY to act whether "user1==user1 && ...
1
vote
1answer
133 views

Unique Constraint, excluding NULL values [closed]

Possible Duplicate: The proper way to implement unique constraint that allows multiple NULL values in SQL Server I have a column in my table where all the values must either be unique, or ...
1
vote
4answers
287 views

SQL Server 2005 unique key with null value

I have a table in SQL Server 2005 with a foreign key, and I want that foreign key to be a unique value or null. I've set it up as a unique key, but it won't allow me to have multiple nulls in the same ...
1
vote
1answer
215 views

One-To-Many relationship with UniqueKey constraint

I'm new to Fluent-NHibernate. My problem is that a want to establish a one-to-many relationship between two entities. A product can have multiple (unique) revisions, and a specific revision only ...
1
vote
4answers
111 views

SQL Primary Key

I came across the 2 versions of sql code.. --1 CREATE TABLE Location ( Id INTEGER PRIMARY KEY NOT NULL, Name TEXT NOT NULL ); --2 CREATE TABLE Location ( Id ...
1
vote
1answer
518 views

MySQL: ALTER IGNORE TABLE ADD UNIQUE, what will be truncated?

I have a table with 4 columns: ID, type, owner, description. ID is AUTO_INCREMENT PRIMARY KEY and now I want to: ALTER IGNORE TABLE `my_table` ADD UNIQUE (`type`, `owner`); Of course I have few ...
1
vote
3answers
294 views

Unique System ID in Ruby …?

Is there a way to generate an unique Hardware dependent Identification key in Ruby...?
1
vote
2answers
211 views

MyISAM unique keys being cut off at 64 bytes, causing collisions

I've got a MySQL table that stores urls as unique keys. I'm starting to get collisions on my keys because it seems the keys themselves are only the first 64 bytes (or characters if you prefer, its a ...
1
vote
5answers
75 views

Given 200 strings, what is a good way to key a LUT of relationship values

I've got 200 strings. Each string has a relationship (measured by a float between 0 and 1) with every other string. This relationship is two-way; that is, relationship A/B == relationship B/A. This ...
1
vote
1answer
474 views

Unique key column order in fluent nhibernate

I try to create unique index with fluent nhibernate. But when i use the following classes tables are created like : Person Table: Id Name PersonStatistic Table: Id Date Count Person_Id Because of ...
1
vote
1answer
166 views

rails relationship using unique key

Table/Entity 1: RetrievedDataRecords Columns: id record_key Table/Entity 2: SourceKeys Columns: id key_name (unique key) I cant alter these tables for legacy reasons, but want rails ...

1 2 3