Presentation is loading. Please wait.

Presentation is loading. Please wait.

DATA MODELS A collection of conceptual tools for describing data, data relationships, data semantics, and consistency constraints. Provide a way to describe.

Similar presentations


Presentation on theme: "DATA MODELS A collection of conceptual tools for describing data, data relationships, data semantics, and consistency constraints. Provide a way to describe."— Presentation transcript:

1 DATA MODELS A collection of conceptual tools for describing data, data relationships, data semantics, and consistency constraints. Provide a way to describe the design of a database at the logical level. Three data models that are used for database management are:  1. The Relational Data Model 2. The Hierarchical Data Model 3. The Network Data Model

2 The Relational Data Model
In this model,the data is organized into tables (ie., rows and columns). These tables are called relations. A row in a table represents a relationship among a set of values. Consider a sample database with three tables (relations):Suppliers, Items, Quantities:   Suppliers (sup-no#,sup-name,status, city) Items ( item-no#, item-name, price) Quantities (sup-no#, item-no#, Qty)

3 Suppliers Items Quantities Sup-no# Sup-Name Status City S1 S2 S3
Britannia New Cockg 10 30 Delhi Mumbai Items Item-no# Item-name Price I1 I2 I3 I4 I5 I6 Milk Cake Bread Biscuit Ice cream Jam 15.00 5.00 9.00 14.00 6.00 10.00 Quantities Sup-no# Item-no# Qty S1 S2 S3 I2 I3 I6 I4 I5 I1 10 20

4 Rows of relations are generally referred to as tuples and the columns are usually referred to as attributes. No two tuples are identical and their ordering is not important. A relationship is represented by combining the primary key of the relations. various operations can be performed on relations such as insert new tuples, delete tuples and modify tuples. There are several languages for expressing these operations. One such language is relational query language.

5 The Network Data Model In this model, data is represented by collections of records and relationships among data are represented by links. Ie., the collection of records which are connected to one another by means of links. A record is a collection of fields (attributes), each of which contains only one data value. A link is an association between precisely two records. The structure of the database is shown as an arbitrary graph in which the records form the nodes and links form the edges. There is no concept of a root node.

6 Consider the structure of the above sample database of suppliers, items and quantities.
Britannia 10 Delhi S2 New 30 Mumbai S3 Cockg 10 Delhi 10 20 I1 milk 15 I2 cake 5 I3 bread 9 I4 biscuit 14 I5 icecream 6 I6 jam 10

7 The operations on a network database are performed through a data manipulation language for network model. The operations that can be performed on a network database include find, insert, delete, modify etc. The inserting or removing records include connect, disconnect and reconnect operations.

8 The Hierarchical Data Model
Same as network model. The only difference is that in the hierarchical model, records are organized as trees rather than arbitrary graphs. The record type at the top of the tree is usually known as root. In general, the root may have any number of dependents and each of these dependents may have any number of low level dependents and so on. Consider the hierarchical view of the above sample database of suppliers, items and quantities.

9 S1 Britannia 10 Delhi 10 20 I2 Cake 5 I3 Bread 9 I6 Jam 10 S2 New 30 Mumbai I4 Biscuit 14 I5 Icecream 6 S3 Cockg 10 Delhi I1 Milk 15

10 In this tree structure supplier record type is the root node.
Here the relationship is expressed in the form of a tree with all the edges pointing to the leaf. The operations on a hierarchical database are performed through a data manipulation language for hierarchical data model. The various operations include retrieval, insertions , deletions and modifications of records.

11 THANK YOU


Download ppt "DATA MODELS A collection of conceptual tools for describing data, data relationships, data semantics, and consistency constraints. Provide a way to describe."

Similar presentations


Ads by Google