retagged by
1,981 views
1 1 vote

Match the following with respect to RDBMS :

$\begin{array}{clcl} \text{(a)} & \text{Entity integrity} & \text{(i)} & \text{enforces some specific business rule that do not} \\ &&& \text{fall into entity or domain} \\ \text{(b)} & \text{Domain integrity} & \text{(ii)} & \text{Rows can’t be deleted which are used by} \\ &&& \text{other records} \\ \text{(c)} & \text{Referential integrity} & \text{(iii)} & \text{enforces valid entries for a column} \\ \text{(d)} & \text{Userdefined integrity} & \text{(iv)} & \text{No duplicate rows in a table} \end{array}$

$\textbf{Code :}$

  1. $\text{(a)-(iii); (b)-(iv); (c)-(i); (d)-(ii)}$
  2. $\text{(a)-(iv); (b)-(iii); (c)-(ii); (d)-(i)}$
  3. $\text{(a)-(iv); (b)-(ii); (c)-(iii); (d)-(i)}$
  4. $\text{(a)-(ii); (b)-(iii); (c)-(iv); (d)-(i)}$

3 Answers

0 0 votes

Entity integrity is used to provide primary key mechanism hence there should be no duplicate rows in table. (a-iv)

Domain integrity specifies that all columns in a relational database must be declared upon a defined domain .(b -iii)

Referential integrity means we cannot delete records in master table before deleting the records from the child table. (c-ii)

Answer should be option 2.

0 0 votes

(B) is the correct Option Because....

(A) Entity Integrity inforces to have primary key cant have null value from  which can say that (iv) No duplicate row in a table

(B) Domain Integrity   it enforce  (iii) valid entries for a coulumn.

(C) Referential integrity it say that a foreign key refers to a primary key and (ii)  primary key  row which uses by the foreign key can't be deleted..

(D) User defined integrity -- (i) It enforces some rule by the author itself..

 

Thanks!!

Answer:
Position:
Show:

Related questions

0 0 votes
2 2 answers
2.3k
2.3k views
Arjun asked Nov 5, 2017
2,317 views
In RDBMS, different classes of relations are created using ________ technique to prevent modification anomolies.Functional DependenciesData integrityReferential integrity...
2 2 votes
1 1 answer
5.2k
5.2k views
Arjun asked Nov 5, 2017
5,203 views
Consider a relation $R (A, B, C, D, E, F, G, H)$ where each attribute is atomic, and following functional dependencies exist.$ CH \rightarrow G$$A \rightarrow BC$$B \righ...
2 2 votes
2 2 answers
3.1k
3.1k views
go_editor asked Jul 13, 2016
3,059 views
Referential integrity is directly related toRelation keyForeign keyPrimary keyCandidate key
3 3 votes
0 0 answers
356
356 views
ramcharan2410 asked Dec 2, 2024
356 views
In the case of referential integrity in RDBMS, there are solutions for INSERT, DELETE, and UPDATE operation problems on Referenced Table (or) Base Table like ON DELETE CA...