abstractions in dbms

12
Abstractions in DBMS

Upload: ignatius-gonsalves

Post on 15-Apr-2017

55 views

Category:

Software


4 download

TRANSCRIPT

Page 1: Abstractions in DBMS

Abstractions in DBMS

Page 2: Abstractions in DBMS

Introduction:

DBMS

Page 3: Abstractions in DBMS

Data Abstraction

First step in database design

Hiding irrelevant data

Page 4: Abstractions in DBMS

Why Data Abstraction?

Process of simplification in both virtual and real world

Page 5: Abstractions in DBMS

We Have Three Types

Physical Level

Logical LevelView Level

Page 6: Abstractions in DBMS

1. Physical Level

Lowest level of data abstraction

Describes how the data is stored

Records are stored in the blocks of memory

Page 7: Abstractions in DBMS

2. Logical LevelFurther higher level Describes how the data is

stored in a Database

May involve complex structures

No need to be aware of complexity

Used by database administrators

Page 8: Abstractions in DBMS

3. View Level

Highest level of data abstraction

To simplify the interaction with the

databaseUser is not aware how

the data is stored in the database

System may provide many views for one database

Page 9: Abstractions in DBMS

Lets take an example

Lets say we are storing a customers info……

1. At physical level

Data is stored in blocks of memory

May be hidden from programmer too

Page 10: Abstractions in DBMS

2. At logical level

Records described as attributes along with

its datatypes

3. At View level

User interacts with the GUI

unaware of the database

Page 11: Abstractions in DBMS

References:http://beginnersbook.com/2015/04/levels-of-abstraction-in-dbms/

http://whatis.techtarget.com/definition/data-abstraction

Page 12: Abstractions in DBMS

THANKYOU