1. Question:What are the E.F. Codd's normal forms? 

    Answer
    Following are the Codd's normal forms:
    - First Normal Form: Eliminate repeating groups of attributes in an entity.
    - Second Normal Form: Eliminate partial key dependencies, i.e. each attribute in an entity must depend on the whole key, not just a part of it.
    - Third Normal Form: Eliminate redundant information by eliminating interdepencies between non-key attributes.






    1. Report
  2. Question:How is "no nulls" constraint implemented for an attribute? 

    Answer
    The not null (NN) concept allows the database desi gner to force the user to enter a value in a particular column. The not null concept is used for columns involved in a primary key. The option must be set when table is created, and set by using the NULL or NOT NULL keywords.






    1. Report
  3. Question:How is a "no changes" constraint implemented for an attribute? 

    Answer
    The no change (NC) concept allows the database designer to prohibit changes to the values in a column. This concept is used mainly for columns participating in primary keys. Preventing changes to a primary key is recommended because primary keys are used to create relationship between tables, and changes to a primary key could result in a referential integrity violation.






    1. Report
  4. Question:How is a "no duplicates" constraint implemented for an attribute? 

    Answer
    The no duplicate (ND) concept specifies that the values in a column must be unique. This concept is used in primary keys and alternate keys.






    1. Report
  5. Question:What is 'Required' property of a field? 

    Answer
    Required property specifies if data must be entered in a field or not. If set to Yes, user can't leave the field blank.






    1. Report
Copyright © 2025. Powered by Intellect Software Ltd