If a relation is in BCNF, then it is also in
If a relation is in BCNF, then it is also in
If a relation is in BCNF, then it is also in
Akilesh Kharvi ? Dec 8 '2016 at 22:17
Answer:3 NF
Explanation:
Normalization is a process that “improves” a database design by generating relations that are of higher normal forms.
there are four normal form
->1 NF
->2 NF
->3 NF
->BCNF
Relations produced from an E-R model will always be in
Akilesh Kharvi ? Dec 8 '2016 at 21:39
Answer: 3 NF
Explanation:
BCNF is higher form of normalization then 1,2,3 NF forms so BCNF will always be in 3NF,2NF,1NF
A binary relation is always a BCNF relation.
A driver's salary may not exceed Rs. 25,000 p.m. This is a / an
Akilesh Kharvi ? Dec 8 '2016 at 21:36
Answer : integrity constraint
Explanation:
Integrity Constraints are used to apply business rules for the database tables.
The constraints available in SQL are Foreign Key, Not Null, Unique, Check.
Check Constraint :This constraint defines a business rule on a column. All the rows must satisfy this rule. The constraint can be applied for a single column or a group of columns.Syntax to define a Check constraint: [CONSTRAINT constraint_name] CHECK (condition) example: [CONSTRAINT salary] CHECK salary<25000
Given the relational functional dependencies x —> w ; x ->y ; y -> z and z -> pq which of the following is NOT VALID ?
Akilesh Kharvi ? Dec 8 '2016 at 21:33
Answer:w ->z
Explanation:
If X→Y and Y→Z then X→Z so it is valid.
If X→W and X→Y then X→WY so it is valid.
If Y→Z and Z→PQ then Y→PQ so it is valid.
w not implies anything so w ->z is not valid.
so answer is w->Z
Which of the following is an example of multilevel indexing ?
Akilesh Kharvi ? Dec 8 '2016 at 21:31
Answer : B-tree
Explanation:
A B-tree is a method of placing and locating files (called records or keys) in a database. (The meaning of the letter B has not been explicitly defined.) The B-tree algorithm minimizes the number of times a medium must be accessed to locate a desired record, thereby speeding up the process.
Reference: http://searchsqlserver.techtarget.com/definition/B-tree