The database-theory tag has no wiki summary.
6
votes
5answers
734 views
SQL Query theory question - single-statement vs multi-statement queries
When I write SQL queries, I find myself often thinking that "there's no way to do this with a single query". When that happens I often turn to stored procedures or multi-statement table-valued ...
3
votes
3answers
138 views
3rd Normal Form on User Account Table, Salts, and Hashes
I understand the importance of salts, hashes and all that good stuff for passwords. My question relates to relational database theory.
My understanding of 3rd normal form is that every element must ...
3
votes
2answers
152 views
How do I implement MVCC?
I have located many resources on the web giving general overviews of MVCC (multi-version concurrency control) concepts, but no detailed technical references on exactly how it should work or be ...
2
votes
1answer
779 views
Consider the following set F of functional dependencies on the relation schema r(A,B,C,D,E,F):
I have tried to reach out to my instructor with no luck and I really want to understand this process, but no matter how much I read the material I cannot seem to make this fit in my little brain. Can ...
1
vote
1answer
89 views
Dependency Theory - Question
I have been trying for the past few hours to get this, I have included below the only answer I have worked out that seems like it may go somewhere, can someone tell me if I am on the right tracks:
...
1
vote
1answer
155 views
Dependency Theory
Does anyone know of a good website, book or any other resources that would explain dependency theory well? I am stuck on a similar question to the one shown below:
Given
R < A = {P,Q,R,S,T,U,Y ...
1
vote
3answers
263 views
What does the symbol “⊇” mean?
In the attached picture there's a symbol I don't understand. To understand additive functional dependency I need to know what the symbol means. Please advice?
It's the symbol where it says: ...
1
vote
1answer
84 views
Using a user-defined type as a primary key
Suppose I have a system where I have metadata such as:
table:
======
key
name
address
...
Then suppose I have a user-defined type described as so:
datasource
datasource-key
...
0
votes
0answers
19 views
Is there a webpage that exists to teach me all about database theory concerning relational and object oriented models?
I have been at a project for a long time now, but I have come to a part where I have a hard time finding information on relational models and object oriented models. I need to research features of ...
0
votes
0answers
65 views
Transformations
I am currently looking at the topic of transformations of an unnormalised relation using AttrMat and also ways RelMat can be used, would anyone be able to suggest any resources for this? or help me ...
0
votes
1answer
52 views
Dependency Theory
I have:
U-> PT….. 1
Q-> SU……2
etc...
in using the reflexivity axiom can I then say
Q-> S , Q-> U
Q-> PT
I trying to ask how this axiom works using the example above.
0
votes
4answers
175 views
The Relational Model & Queries That Naturally Return Duplicate Rows
It's commonly understood that in the relational model:
Every relational operation should yield a relation.
Relations, being sets, cannot contain duplicate rows.
Imagine a 'USERS' relation that ...
0
votes
2answers
87 views
On the relationship of database tables to a pivot/junction table
In a database, one may create a many-to-many relationship between tables by creating a third table which maps the two together using foreign keys. What is the relationship between the third table and ...
0
votes
1answer
756 views
candidate keys from functional dependencies
Given the Relation R with attributes ABCDE. You are given the following dependencies: A -> B, BC -> E, and ED -> A. I already have the answer which is CDE, ACD, and BCD. I just need to know how to do ...