Some Terminology of Database

Some Terminology of Database

BCA Notes Blogs

Data abstraction:

In a database the structure of a database is a complex and it is made easy to the user to access data form a database, in a database the developers hide the internal irrelevant details from users. The process of hiding the irrelevant data from user is called Database abstraction.

Level of Data Abstraction

There are Two level of data abstractions:

  1. Physical Level:
    1. It is a lowest level of data abstraction.
    1. It describes the how the data is actual stored disk
    1. It is also called internal level.
    1. The internal view described by the internal schema.
  2. Logical Level:
    1. It is also called conceptual level.
    1. Conceptual level lies between view level and physical level
    1. It describes what data are stored in a database and what relationships exits among these data.
    1. The conceptual database schema is describes by relation.
  3. View Level:
    1. It is also called external level or user level.
    1. It is the top of data abstraction.
    1. This level is concerned with users and it describes the part of database that a particular user is interested in and hides the rest of the database from user.

Data independent

The capacity to change the conceptual schema without affecting the applications program is called data independent. There are two kinds of data independent:

  1. Logical data independent: the capacity of change the conceptual schema without affecting the application program is called logical data independent.
  2. Physical Data independent: The capacity of change the internal schema without affecting the application program is called physical data independent.

Database Administrator:

A DBA is a person who has central control both data and programs. The responsibilities of Database Administrator are as follows:

  1. Schema definition and modification.
  2. New software installation.
  3. Security enforcement and administration.
  4. Data Analysis.
  5. Physical database design.
  6. Routine management
  7. Physical organization modification.
  8. Give the backup and recovery strategies.

Types of Relationships:

It is the association among entities for a binary relationship set R between entity set A and set B the relationship may be

One to one (1:1): An entity A as associated with at most one entity. In B and N entity in B is associated with at most one entity in A. eg principle and college

One to Many (1:M): An entity in a associated with any number of entity an entity in B how ever B can be associated with at most one entity in A. eg. Teacher and Course

  • Many to many (m:m): An entity in A associated with any number of entity in B in entity in B. in entity B  is associated with any number of entity in A. eg. Student and Course.

Leave a Reply

Your email address will not be published. Required fields are marked *