Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
9answers
195 views

Unique identifiers for users

If I have a table of a hundred users normally I would just set up an auto-increment userID column as the primary key. But if suddenly we have a million users or 5 million users then that becomes ...
6
votes
4answers
434 views

Automate the generation of natural keys

I'm studying a way to serialize part of the data in database A and deserialize it in database B (a sort of save/restore between different installations) and I've had a look to Django natural keys to ...
3
votes
9answers
503 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 ...
2
votes
2answers
67 views

Using National ID as Primary Key

I'm developing a system that make use of national ID one of "identifying record" is it a good idea to embed nat_id in all the tables to make query easier? What are the downsides of doing so? I just ...
1
vote
1answer
143 views

Fluent NHibernate referencing entity with natural key

I'm using Fluent NHibernate automapping functionality. I've managed to get the database mappings pretty close using conventions, but there are a few things for which I need IAutoMappingOverride. In a ...
1
vote
2answers
286 views

JPA: does the JPA specification allow references to non-primary key columns?

Does the JPA specification allow simple references to non-primary key columns? I have a simple alternative/natural key (UNIQUE, NOT NULL) column iso_code on my Countries table which I'd like to use ...
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 ...
1
vote
5answers
1k views

Entity Framework and associations between string keys

I am new to Entity Framework, and ORM's for that mather. In the project that I'm involed in we have a legacy database, with all its keys as strings, case-insensitive. We are converting to MSSQL and ...
0
votes
1answer
245 views

Hibernate: bug when mapping a reference to an alternative/natural key column of a sub table?

The original question stems from this question: Why is this JPA 2.0 mapping giving me an error in Eclipse/JBoss Tools? As you can see this constellation also freaks out the Eclipse Dali JPA ...
0
votes
1answer
148 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
3answers
181 views

What is a natural identifier?

When reading through the Hibernate documentation I keep seeing references to the concept of a "natural identifier". Does this just mean the id an entity has due to the nature of the data it holds? ...
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. ...