Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
9answers
491 views

Does every table really need an auto-incrementing artificial primary key? [closed]

Almost every table in every database I've seen in my 7 years of development experience has an auto-incrementing primary key. Why is this? If I have a table of U.S. states where each state where each ...
7
votes
7answers
987 views

Procedurally transform subquery into join

Is there a generalized procedure or algorithm for transforming a SQL subquery into a join, or vice versa? That is, is there a set of typographic operations that can be applied to a syntactically ...
6
votes
9answers
323 views

Why are positional queries bad?

I'm reading CJ Date's SQL and Relational Theory: How to Write Accurate SQL Code, and he makes the case that positional queries are bad — for example, this INSERT: INSERT INTO t VALUES (1, 2, 3) ...
4
votes
5answers
142 views

Unique key with NULLs

This question requires some hypothetical background. Let's consider an employee table that has columns name, date_of_birth, title, salary, using MySQL as the RDBMS. Since if any given person has the ...
3
votes
1answer
164 views

Would relational calculus be Turing-complete if it allowed unsafe queries?

My understanding about Codd's concept of "safe queries" was created to ensure that a query would always terminate. One key ability of a Turing machine is that it can work on infinite calculations ...
2
votes
0answers
37 views

Prototype machine whose complete design is based on the relational model

In the Preface to Ted Codd's The Relational Model for Database Management, Version 2, he writes (first paragraph): Today, if you have a well-designed database management system, you have the ...
2
votes
3answers
93 views

Database mnemonics

I'm looking for mnemonics to help me with databases, the relational model and transaction theory. For example I learned "ACID" to help me remember the properties of a transaction: atomicity, ...
2
votes
2answers
351 views

Can a Superkey include things that aren't part of the Primary key?

Can a Superkey include things that aren't part of the Primary key?
2
votes
5answers
1k views

Circular database relationships. Good, Bad, Exceptions?

I have been putting off developing this part of my app for sometime purely because I want to do this in a circular way but get the feeling its a bad idea from what I remember my lecturers telling me ...
1
vote
2answers
106 views

Is there any DBMS that does not rely upon SQL?

This topic is somewhat related to this question. There my answer was motivated by the assumption that SQL is necessary to access data in every database I know. AFAIK, whether you are directly ...
1
vote
1answer
49 views

Conceptual to relational mappings

this is a homework question. I already have my own answer, but I am not sure if its correct, need your guys advise. Here is the conceptual diagram: ------------- | Employer | ------------------- | ...
1
vote
2answers
103 views

Relational modelling question

We have three entities called Product, ProductType, and ProductCategory. Let's pretend we have three kinds of ProductType: Book, Music, and Video. We have three different ProductCategory's for ...
1
vote
6answers
180 views

Normalization and historical data

Before I describe my problem, I'd like to get a couple things out of the way: I'm an experienced (though not expert) database designer. I believe I have a good grasp of the relational model. I don't ...
1
vote
5answers
387 views

Broken referential integrity: What would Edgar Codd say?

I'm trying to understand rules of relational model as originally defined by Edgar Codd in 1970. Specifically I'm interested whether referential integrity is part of his relational model or not. I'll ...
0
votes
2answers
45 views

Relational database theory and keys

I'm designing a schema to hold player data within a browser based game. I have three relations. Two of them have at least two candidate keys, however the third has only three attributes: {playerId, ...
0
votes
1answer
69 views

Using @Version column does not allow @ManyToOne relationship property as a reference

I'm using hibernate 3.6.3.Final. I have two relational entities A & B with a unidirectional ManyToOne defined as: @Entity public class A { ... @Version @Column ( name = "ChangeNumber" ) public ...
0
votes
3answers
311 views

How to generate Relational Model from UML Class Model?

Does anyone know an application (Enterprise Architect, ...) that allows mapping from UML Class Model to Database Relational Model automatically? How? Thanks