2
votes
8answers
136 views
Is there a simple way to create a unique integer key from a two-integer composite key?
For various reasons that aren't too germane to the question, I've got a table with a composite key made out of two integers and I want to create a single unique key out of those tw …
0
votes
3answers
45 views
Generate unique key in Java to be used as primary key in Oracle tables.
I am trying to get a string of length 15 to be used as primary key in database tables. The following code in java returns some key with length 35
UUID.randomUUID().toString()
C …
1
vote
4answers
94 views
is it good to have primary keys as Identity field
Hi , I have read a lot of articles about whether we should have primary keys that are identity columns, but I'm still confused.
There are advantages of making columns are identity …
0
votes
6answers
85 views
What is the difference between an Index and a Foreign Key?
I want to create a database with 3 tables. One for posts and one for tags and one that links posts to tags with the post_id and tag_id functioning as foreign key references.
Can y …
0
votes
2answers
37 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 …
0
votes
2answers
65 views
Primary Key behaviour in Core Data iPhone
I am making an app that parses feeds from xml and stores them using Core Data.
The issue I am dealing with at the moment is duplicate entries. Every feed I am parsing contains a un …
3
votes
3answers
66 views
Rails modeling: converting HABTM to has_many :through
I'm doing maintenance work on an existing Rails site and am having some problems stemming from many-to-many associations. It looks like the site was initially built using has_and_ …
2
votes
6answers
66 views
When not to use surrogate primary keys?
I have several database tables that just contain a single column and very few rows, often just an ID of something defined in another system. These tables are then referenced with …
0
votes
4answers
33 views
mysql - Able to enter multiple values even when new value equals an existing primary key
I have a table defined as follows:
CREATE TABLE `mydb`.`users` (
`userID` int(10) unsigned NOT NULL AUTO_INCREMENT,
`userName` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
…
1
vote
5answers
87 views
Should i have a primary ID? i am indexing another field.
Using sqlite i need a table to hold a blob to store a md5 hash and a 4byte int. I plan to index the int but this value will not be unique.
Do i need a primary key for this table? …
3
votes
3answers
95 views
Is it a good idea to use rowguid as unique key in database design?
Hi there,
SQL Server provides the type [rowguid]. I like to use this as unique primary key, to identify a row for update. The benefit shows up if you dump the table and reload it, …
0
votes
8answers
76 views
Should I add a autoinc primary key for the sake of having a primary key?
I have a table which needs 2 fields. One will be a foreign key, the other is not necessarily unique. There really isn't a reason that I can find to have a primary key other than ha …
0
votes
1answer
17 views
Fabricate entities with multiple IDENTITY PKs?
Disclosure: I'm a 'natural key' advocate myself and averse to the IDENTITY PK approach. But I do have a 'live and let live' approach to lifestyle choices, so no religious arguments …
1
vote
6answers
186 views
Mysql: How do you create a table with multiple primary keys?
I have this situation:
http://stackoverflow.com/questions/1590033/mysql-newbie-question-which-are-the-pk-and-the-fk-for-this-tables (take a look at the table Salaries)
How do you …
0
votes
1answer
166 views
SQL Server: drop table primary key, without knowing its name
HI,
Using: SQL Server
Database: Northwind
I'd like to drop a table primary key, without knowing the PK constraint name..
eg, using the Categories table in the Northwind Sample d …
