Computer Science, asked by 24novelstory, 8 months ago

list five characteristics of a database?

Answers

Answered by Hɾιтհιĸ
8

We should be able to store all kinds of data that exist in this real world. Since we need to work with all kinds of data and requirements, the database should be strong enough to store all kinds of data that are present around us.

We should be able to relate the entities/tables in the database by means of relation. i.e.; any two tables should be related. Let us say, an employee works for a department. This implies that an Employee is related to a particular department. We should be able to define such a relationship between any two entities in the database. There should not be any table lying without any mapping.

Data and applications should be isolated. Because the database is a system that gives the platform to store the data, and the data is the one that allows the database to work. Hence there should be a clear differentiation between them.

There should not be any duplication of data in the database. Data should be stored in such a way that it should not be repeated in multiple tables. If repeated, it would be an unnecessary waste of DB space, and maintaining such data becomes chaos.

DBMS has a strong query language. Once the database is designed, this helps the user to retrieve and manipulate the data. If a particular user wants to see any specific data, he can apply as many filtering conditions that he wants and pull the data that he needs.

Multiple users should be able to access the same database, without affecting the other user. i.e.; if teachers want to update a student’s marks in the Results table at the same time, then they should be allowed to update the marks for their subjects, without modifying other subject marks. A good database should support this feature.

Similar questions