Use of database objects in modern relational databases

In large-scale offshore software developmenteach intersecting point (known as a cell) holds
processes, it is seldom required to design therecord and each row (also known as tuple) holds
database dynamically so that any extension ofa complete set of records. Every row or tuple is
the database does not affect the existing datafurther classified using a Primary Key (a field value
model. To do so, most of the modern databasesthat uniquely describes a set of records). Also, a
use database objects to store or reference data.table can be related to another by using suitable
Database objects serve all basic operations likeforeign keys.
data addition, deletion, searching and retrievalClusters
processes in database. Database objects can beClusters are physical locations where data is
searched for either by primary key or by astored for a database. A cluster contains data
combination of field-values (related by foreignfrom one or more tables with one or more
keys). In software product development involvingcommon columns. All modern relational databases
databases, the relationship between variousused in application software and development
Database Objects are often described using aprocesses create a collection all the rows from all
Schema.the tables which share the same cluster key.
The most common database objects are:Views
TablesA View is a database object that provides a
The table is main storage object in a database. Asubset of filtered, sorted and grouped data
table is a collection of rows and columns whereretrieved from the database in a predefined way.