DzinX

3,467
Reputation
179 views

Registered User

Name DzinX
Member for 1 year
Seen Nov 25 at 11:24
Website
Location Poland
Age 26
Nov
15
answered CSS Problem with Overflow with div
Oct
13
comment How to enforce DB integrity with non-unique foreign keys?
Wonderful! A little too much data in child table, but definitely worth it -- brings simplicity and order to the design. Thanks!
Oct
10
revised How to enforce DB integrity with non-unique foreign keys?
info about my solutions
Oct
10
answered How to enforce DB integrity with non-unique foreign keys?
Oct
10
answered How to enforce DB integrity with non-unique foreign keys?
Oct
10
comment How to enforce DB integrity with non-unique foreign keys?
Yeah, I could do that, but then I should keep the current data in two copies: one in CurrentPerson, and one (with highest version) in PersonHistory, so that I don't have to switch between tables when pointing to a person from a document to be printed. This means that I have to make sure that these two entries contain the same data... that's it! Your solution gave me a good idea! Thanks! I'll post it as a separate answer.
Oct
10
comment How to enforce DB integrity with non-unique foreign keys?
I don't like the way you have to update PersonsWithDogs each time you change Person's info. This way, I could have my 2 starting tables and have DOGS.owner_id instead of DOGS.owner_name and update this id on each person's change. This can be costly if a person has many dogs.
Oct
10
comment How to enforce DB integrity with non-unique foreign keys?
Hmm from what I see, I now have four tables and still no guarantee that there exists a Details row that corresponds to a Dog row. Am I missing something?
Oct
10
comment How to enforce DB integrity with non-unique foreign keys?
Quote: "I thought that a good idea would be to have two columns that identify the row: (name, version)." That aside, from what I see, your solution is similar to Mark's and suffers from the same problem: there's no guarantee that there exists at least one PersonVersion for each Dog (linked through Persons table). Can this be fixed somehow?
Oct
10
comment How to enforce DB integrity with non-unique foreign keys?
Could you explain this in more detail? Is your solution similar to Mark's?
Oct
9
comment How to enforce DB integrity with non-unique foreign keys?
It is, as the (name, version) pair implies id and vice versa, so I can discard either id or version (because name is referenced by DOGS table). I want to keep the version for reasons explained in my post, so the only thing I can discard is id. But this doesn't help me at all! I can't see the solution you have in mind. What normalization would you apply to my tables and how would it help?
Oct
9
comment How to enforce DB integrity with non-unique foreign keys?
Ouch, that hurt! FYI, I understand very well what normalization means. If you have an idea how to solve my problem, please explain it in more detail and maybe provide at least a part of a solution.
Oct
9
comment How to enforce DB integrity with non-unique foreign keys?
First, as for normalization, OK, I can throw away "PERSONS.id", but that won't solve my problem at all. Second, if DOGS.owner would reference PERSONS.id, it would point to a person with fixed version, not the latest, which is exactly what I want to avoid.
Oct
9
asked How to enforce DB integrity with non-unique foreign keys?
Oct
7
awarded  Nice Answer
Sep
21
revised How to expand JavaScript Array with another Array?
added missing dot
Sep
20
awarded  Yearling
Sep
8
awarded  Enlightened
Sep
4
comment How to expand JavaScript Array with another Array?
Did you even try to execute your code? It does not work, as concat does not modify array 'a'.
Sep
3
answered How to expand JavaScript Array with another Array?
Sep
3
asked How to expand JavaScript Array with another Array?
Aug
22
awarded  Nice Answer
Jul
26
awarded  Nice Answer
Jul
7
comment Python operators
I don't know about slowness. It can be dangerous (i.e. unsafe) if not very carefully used, but here it's perfectly safe as all input is checked (integers or a limited character set).
Jul
7
revised Python operators
removed exception handling
Jul
7
answered Python operators
Jul
6
accepted Can I be warned when I used a generator function by accident
Jul
6
answered Can I be warned when I used a generator function by accident
Jul
2
awarded  Popular Question