Tagged Questions
The surrogate-key tag has no wiki summary.
6
votes
1answer
433 views
Preferred way to add surrogate key to existing Oracle DB table
I have to modify an existing table in a Oracle 10g DB with a few thousand records to add a surrogate autonumber key. One way that comes to my mind is to
Create a new sequence
Create the id column, ...
3
votes
2answers
108 views
Surrogate key in 'User' / 'Role' tables for desktop app? Whats the purpose?
I have to add some security for a C#/.NET WinForms/Desktop application. I am using Oracle DB back-end.
The tables are simple: User (ID,Name), Role(ID,Role), UserRole(UserID,RoleID).
I am using the ...
3
votes
9answers
504 views
Relational database design question - Surrogate-key or Natural-key?
Which one is the best practice and Why?
a) Type Table, Surrogate/Artificial Key
Foreign key is from user.type to type.id:
b) Type Table, Natural Key
Foreign key is from user.type to ...
3
votes
4answers
530 views
Should I use “id” or “unique username”?
I am using PHP, AS3 and mysql.
I have a website. A flash(as3) website. The flash website store the members' information in mysql database through php. In "members" table, i have "id" as the primary ...
2
votes
2answers
95 views
Separate table in case of surrogate key?
I have been reading the heated debates on composite vs surrogate keys on Stack Overflow and other websites, and even though puzzled about some of the arguments given, I feel I am aware of the pros and ...
1
vote
1answer
135 views
Linq2SQL database design: mapping composite/surrogate keys
Image that I have a huge database which stores threads and posts from different datasources like two different forums. For each datasource, the Id of the entity (e.g. ThreadId, PostId...) is unique ...
1
vote
2answers
474 views
Mixed surrogate composite key insert in JPA 2.0, PostgreSQL and Hibernate 3.5
First off, we are using JPA 2.0 and Hibernate 3.5 as persistence provider on a PostgreSQL database.
We successfully use the sequence of the database via the JPA 2.0 annotations as an auto-generated ...
1
vote
1answer
602 views
How should I define a composite foreign key for domain constraints in the presence of surrogate keys?
I am writing a new app with Rails so I have an id column on every table. What is the best practice for enforcing domain constraints using foreign keys? I'll outline my thoughts and frustration.
...
1
vote
1answer
224 views
Recommend datatype Number vs Varchar for a surrogate key
Can anyone of you please tell me which is the best data type for a surrogate key (number or varchar2)? I have read that surrogate key works best with the number type. But is the performance seriously ...
1
vote
2answers
835 views
Surrogate key as a foreign key over composite keys
I realise there might be similar questions but I couldn't find one that was close enough for guidance.
Given this spec,
Site
---------------------------
SiteID int identity
Name ...
1
vote
1answer
382 views
Must Django ManyToManyField association tables have a surrogate key?
I'm mapping an existing database structure into Django models. I have a many-to-many structure where the association table is natural-keyed:
CREATE TABLE foo (id INTEGER PRIMARY KEY);
CREATE TABLE ...
0
votes
1answer
92 views
Oracle UROWID or SEQUENCE
I need to create a surrogate identity key for some intermediate tables used in a stored procedure in Oracle. I found that ROWID inserted into a UROWID column works well but this is not the correct ...
0
votes
1answer
54 views
Should I use a surrogate key or use the natural keys?
I am building a list type to let users make lists of various things in my system. The list elements therefore need references to both the type and identifier of the things they will be pointing at.
...
0
votes
2answers
277 views
Choosing a primary key,surrogate key, index in the mysql stock trading database
Database type: mysql
Columns:
Date,time,price1,qty1,price2,qty2
time will be in milliseconds
number of records approx 5.5 million for a month.
I cant choose date as primary key as it is not unique, ...
0
votes
6answers
303 views
ID Best Practices for Databases
I was wondering what the best practices were for building and storing IDs. A few years ago, a professor told me about the dangers of a poorly constructed ID system, using the Social Security Number as ...
0
votes
1answer
428 views
JPA, Mixed surrogate key with foreign key and sequence number
I've got two tables:
DOCUMENT
--------
DOC_ID (PK)
.
.
.
SECTION
-------
DOC_ID (FK, PK)
SECTION_NUM (PK)
.
.
.
Entries in the database might look like this:
Document:
DOC_ID | . . .
...
0
votes
3answers
202 views
MD5 hash as artificial keys
I'm seeing lots of applications using hashes as surrogate keys instead of plain integers. I can't see any good reason for this kind of design.
Given most UUID implementations are just hashed ...
0
votes
2answers
138 views
Database Design - How to enforce a foreign key constraint on a table with a Surrogate Key
My table schema is something like this
1. Master table : Clause
Columns
ClauseID = surrogate pk (identity)
ClauseCode = nvarchar user specified value
Class = nvarchar FK to a master class table
...
0
votes
1answer
149 views
Can I use an assigned, natural-key identifier while still allowing NHibernate to identify transient instances?
Object A has a one-to-many association: many object B.
When I look in the database -- TableB -- I'd like to see the unique, readable string A.Name instead of having always to join or subselect on a ...
0
votes
2answers
462 views
Loading Fact Table + Lookup / UnionAll for SK lookups
I got to populate FactTable with 12 lookups to dimension table to get SK's, of which 6 are to different Dim Tables and rest 6 are lookup to same DimTable (type II) doing lookup to same natural key.
...
0
votes
1answer
44 views
Generating surrogate keys remotely
Sorry in advance as this question is similar (but not the same!) to others.
Anyway, I need to be able to generate surrogate keys in more than one location to be synchronized at a later time. I was ...
0
votes
3answers
398 views
Guaranteeing Unique Surrogate Key Assignment - Maximum Matching for Non-Bipartite Graph
I am maintaining a data warehouse with multiple sources of data about a class of entities that have to be merged. Each source has a natural key, and what is supposed to happen is that one and only ...
0
votes
2answers
1k views
Many-to-many relationship with surrogate key in Entity Framework
Entity Framework magically interprets the following table structure as a many-to-many relationship.
table foo (int id)
table foo_bar (int foo_id, int bar_id)
table bar (int id)
But if the join ...
0
votes
1answer
466 views
Retrofit surrogate key in table with natural key in MySql?
Assume a table that uses a natural key and has a number of existing rows. What would be the easiest way to retrofit a surrogate key column and populate it with unique values using MySql?
I.e. ...