A key in a database table, that is comprised from attributes that have intrinsic logical meaning. Conceptually, these attributes have existed in the "real world" even before the key was created.
1
vote
2answers
52 views
Surrogate key 'preference' explanation
As I understand there is a war going on between purists of natural key and purists of surrogate key. In likes to this this post (there are more) people say 'natural key is bad for you, always use ...
1
vote
1answer
50 views
Unable to use natural keys in django foreign key serialization
So the thing is I have a class which has a foreign key.
This is my code
class Proxy(models.Model):
class Meta:
db_table = 'Proxy'
equipment = models.ForeignKey('Equipment', ...
0
votes
0answers
55 views
Merge natural key in JPA
Given an entity with a natural key (no surrogate pk, using @IdClass), is the persistence provider supposed to prevent primary key violations when merging identical instances? I get primary key ...
0
votes
1answer
42 views
Can a model manager access its models' Meta attribute (`Meta.unique_together`)?
Here's my attempt at a generalized natural key model manager. It's like the docs except it tries (unsuccessfully) to determine the natural key field names from the Meta.unique_together attribute.
...
0
votes
0answers
163 views
Django fixture load DeserializationError: 'unicode' object has no attribute 'pk'?
I am getting the following error when trying to run my test with fixtures:
File "/usr/local/lib/python2.7/dist-packages/django/core/management/commands/loaddata.py", line 190, in handle
for obj ...
0
votes
0answers
59 views
Django deserialization of a natural key that contains another natural key
I am creating a model that records player stats.
By manually entering data points first, I am able to have Django serialize data with natural keys into a json file just fine using dumpdata --natural.
...
1
vote
1answer
267 views
Django : Generic Foreign key dumpdata: Can't resolve dependencies
I use Generic Foreign keys to relate different profiles with my Users model which is inherited from auth.User. I'm not able to do dumpdata though with the --natural option passed. It says,
Error: ...
2
votes
2answers
375 views
How to create a fact table using natural keys
We've got a data warehouse design with four dimension tables and one fact table:
dimUser id, email, firstName, lastName
dimAddress id, city
dimLanguage id, language
dimDate id, startDate, endDate
...
0
votes
0answers
96 views
hibernate mapping natural-id property inside component with further properties
Is it possible to map an natural-id property inside a component that has other properties?
Existing mapping:
<natural-id mutable="true">
<property name="email" type="string" ...
1
vote
1answer
228 views
Gorm change primary key, not found with id null
I have read tons of questions about this and it seems that nobody gets it to work.
I am using grails, and I am creating a class that doesn't have id as the primary key.
I get the message "usuario ...
3
votes
3answers
178 views
Natural vs surrogate keys on support tables [closed]
I have read many articles about the battle between natural versus surrogate primary keys.
I agree in the use of surrogate keys to identify records of tables whose contents are created by the user.
...
0
votes
1answer
662 views
Django Natural Key for Fixtures Give Deserialization Error
I've seen a few similar questions to this on SO, but none seem to answer my particular problem. I'm new to Django and was guiding myself by the instructions at this page to allow myself to use natural ...
5
votes
1answer
144 views
Is it possible to use a natural key for a GenericForeignKey in Django?
I have the following:
target_content_type = models.ForeignKey(ContentType, related_name='target_content_type')
target_object_id = models.PositiveIntegerField()
target = ...
3
votes
1answer
180 views
How can I update a MySQL natural key while avoiding duplicate foreign keys?
Here is the thing:
I have a webapp built with jQuery/php/mysql. It's kind of a task manager. I have categories and tasks belonging to categories. Tasks have a surrogate primary key (Autoincrement id) ...
1
vote
1answer
638 views
Loading a Django Fixture containing Natural Keys
How do you load a Django fixture so that models referenced via natural keys don't conflict with pre-existing records?
I'm trying to load such a fixture, but I'm getting IntegrityErrors from my MySQL ...
1
vote
1answer
82 views
Find a Natural Key in a dataset
I inherited a table with about 40 columns and about 1400 rows. Unfortunately, the original designers didn't include an identifiable PK in the table so I'm assuming they used a natural key with a ...
2
votes
2answers
123 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
292 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 ...
0
votes
1answer
706 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 ...
2
votes
2answers
2k views
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 ...
7
votes
4answers
735 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 ...
5
votes
9answers
944 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 ...
1
vote
1answer
250 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 ...
7
votes
9answers
232 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 ...
0
votes
3answers
753 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? ...
1
vote
1answer
623 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 ...
3
votes
5answers
2k 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
607 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. ...