data modal and its business use

11
SURYA PRAKASH ROLL NO 12 DATA MODEL AND ITS BUSINESS USE

Upload: tiwari1989

Post on 10-Jun-2015

343 views

Category:

Technology


1 download

TRANSCRIPT

Page 1: Data modal and its business use

SURYA PRAKASHROLL NO 12

DATA MODEL AND ITS BUSINESS USE

Page 2: Data modal and its business use

WHAT IS DATA MODEL

Data model is a collection of conceptual tools for describing data, data relationships, data semantics, and consistency constraint

A data model provides a way to describe the design of a database at the physical, logical, and view levels

There are number of different data models are as follow

Page 3: Data modal and its business use

TYPES OF DATA MODELS A collection of tools for describing

data data relationships data semantics data constraints

Entity-Relationship model Relational model Other models:

object-oriented model semi-structured data models Older models: network model and

hierarchical modal

Page 4: Data modal and its business use

ENTITY- RELATIONSHIP MODEL

The entity- relationship (E-R) data model uses a collection of basics object called entity and relationship among these object

An entity is a thing or object in real world that is distinguishable from other objects

The entity- relationship model is widely used in data base design

Page 5: Data modal and its business use

ENTITY-RELATIONSHIP MODEL

Example of schema in the entity-relationship model

Page 6: Data modal and its business use

RELATIONAL MODEL

The relational model uses a collection of tables to represent both data and the relationships among those data

Each table has multiple columns, and each column has a unique name

Tables are also known as relation

Page 7: Data modal and its business use

RELATIONAL MODEL Example of tabular data in the relational model

customer-name

Customer-id

customer-street

customer-city

account-number

Ram

Suresh

Vijay

John

Smith

192-83-7465

019-28-3746

192-83-7465

321-12-3123

019-28-3746

south

North

avenue

Main

North

Raipur

Jaipur

Pune

Allahabad

Warangal

A-101

A-215

A-201

A-217

A-201

Attributes

Page 8: Data modal and its business use

SOME IMPORTANT TERMS

TABLE –It consists of multiple columns RELATION-Tables are also known as

relation TUPLE-In relational modal tuple is used

to refer to a row ATTRIBUTE- It refer to a column of table

Page 9: Data modal and its business use

OBJECT- BASED DATA MODEL

Object- oriented programming (especially in java, C++, C#) has become the dominant software development methodology this led to the development of an object oriented data model that can be seen as extending the E- R model

The object relational data model combines features of object oriented data model and relational data model

Page 10: Data modal and its business use

SEMI STRUCTURED DATA MODEL

The semi structured data model permits the specification of data where individual data item of the same type may have different sets of attribute

This is in contrast to the data model mentioned earlier, where every data item of a particular type must have the same sets of attribute

The Extensible Markup Language(XML)is widely used to represent semi structured data

Page 11: Data modal and its business use