DBMS Notes
Database Management System
Data Modeling
Database Architecture
Relational Model
Relational Algebra
Entity Relationship Model
Functional Dependencies
Normalization
Transaction And Concurrency Control
Deadlock
Files and Storage
Indexing
Heading
Q
1
Define functional dependency in Relational Model.
Ans
Functional dependency defines the relationship of one attribute to the other in a database table. A functional dependency of a relation is denoted by an arrow→. If the attribute A is dependent on attribute B, it is denoted by A→B A→ indicates that tuples having the same value of attribute A also should have the same value of attribute B.
In the below example, SID→SNam is a functional dependency, because Sname is dependent on SID.
Q
2
Define functional dependency set.
Ans
A functional dependency set of a relation is the set of all functional dependencies in that relation.
Q
3
What are the types of functional dependencies?
Ans
a. Trivial Functional Dependency
A→B is said to be a trivial functional dependency if B is the subset of A and A∩B is not NULL. Such a functional dependency is always valid. An attribute determining itself (A→A) is also a trivial functional dependency.
b. Non-trivial Functional Dependency
A→B is said to be a non-trivial functional dependency if B is not a subset of A and A∩B is NULL. Such a functional dependency may be valid or invalid.
Q
4
What are the different properties of functional dependency?
Ans
Armstrong’s axioms are the set of rules which define the properties of a functional dependency.
1. REFLEXIVITY
a. If Y is subset of X, then X→ Y
2. AUGMENTATION
a. If X → Y, then XZ →YZ
3. TRANSITIVE
a. If X →Y and Y →Z, then X→Z
4. UNION
a. If X→Y and X→Z, then X→YZ
5. DECOMPOSITION
a. If X→YZ, then X→Y and X→Z
6. PSEUDO TRANSITIVITY
a. If X→Y and WY→Z, then WX→Z
7. COMPOSITION
a. If X→Y and Z→W, then XZ→YW
Q
5
Define Attribute Closure with an example.
Ans
The attribute closure of a set of attributes is defined as the set of all attributes which can be functionally determined from it. Attribute closure of the relation A is denoted by {A} + .
Steps to find attribute closure of a relation:
1.Add elements of an attribute set to the result set
2.Recursively add elements to the result set which can be functionally determined from the elements of the result set
Q
6
Define Canonical Cover with an example.
Ans
Canonical cover Fc of a set of functional dependencies F is a simplified or irreducible set of FDs that has the same closure as that of the original set F. Fc logically implies all dependencies in F. A functional dependency in the canonical or minimal cover must not have extraneous attributes. Each eft side of an FD in Fc is unique. i.e. there are no 2 dependencies A→B and C→D such that A→C
Example:
Q
7
Explain Lossless join decomposition.
Ans
Lossless join decomposition is used to remove redundancy from the relation safely. When a relation is decomposed into two or more relations (R1, R2, etc.,) such that the natural join of the relations will give back the original relation, it is called lossless join decomposition.
Consider that a relation R is decomposed into three relations R1, R2, and R3. This decomposition is lossless if the union of the attributes R1, R2, and R3 is equal to the attributes of R, and the intersection of the attributes of R1, R2, and R3 is NULL.
Q
8
What do you undrstand by Extraneous attributes?
Ans
After removing an attribute of functional dependency, if there is no change in the attribute closure of the set of FDs, then the removed attribute is called an extraneous attribute. A canonical cover must not contain extraneous attributes.
Q
9
What is the use of attribute closure?
Ans
a. Attribute closure helps in finding all the functional dependencies of a relation.
b. It is used to find the candidate keys of a relation.
Q
10
What is trival depedencies?
Ans
A→B is said to be a trivial functional dependency if B is the subset of A and A∩B is not NULL. Such a functional dependency is always valid. An attribute determining itself (A→A) is also a trivial functional dependency.