SlideShare a Scribd company logo
1 of 25
Top schools in Gudgaon 
By: 
school.edhole.com
Database System Concepts and 
Architecture 
Dr. Ali Obaidi 
school.edhole.com
Data Models 
• A collection of concepts that can be used to 
describe the structure of a database (data types, 
relationships, and constraints) 
• basic operations (retrieval and updates) 
• specify the dynamic aspect or behavior of a 
database application( user-defined operations ) 
• example: COMPUTE_GPA, which can be applied 
to a STUDENT object 
school.edhole.com
Categories of Data Models 
• High-level or conceptual data models (common 
users) 
• low-level or physical data models (describe the 
details of how data is stored ) 
• in between, representational (or implementation) 
data models can serve both categories above 
school.Jan 29, 2002 
edhole.com
Jan 29, 2002 
Conceptual Data Model 
• Use concepts such as 
– Entities:a real-world object or concept (DEPT) 
(COURSE) 
– Attributes:property of interest that further describes an 
entity (dept no, name, telephone, etc) 
– Relationships:interaction among the entities (DEPT) 
provides (COURSE) 
school.edhole.com
Jan 29, 2002 
Physical Data Model 
• Describes how data is stored in the computer. 
• It represents info such as 
– record formats 
– record orderings 
– access path: make search more efficient 
school.edhole.com
Representational Data Model 
• Used in traditional commercial DMBS 
• they include 
– Relational Data model 
– Network model 
– Hierarchical model 
school.Jan 29, 2002 
edhole.com
Jan 29, 2002 
Schemas 
• Is the description of the database (not database itself) 
– Specified during database design 
– Not expected to change frequently 
– A displayed schema is called a schema diagram (Fig 2.1) 
• Each object in the schema-such as STUDENT or 
COURSE-is a schema construct. 
• Schema diagram represents only some aspects of a 
schema (name of record type, data element and 
some type of constraint) 
school.edhole.com
schJano 29o, 20l0.2edhole.com
Instances and Database State 
• The data in the database at a particular moment in time is 
called a database state or snapshot or current set of 
occurrences or instances in the database 
• When we define a new database we have database state is 
empty state (schema specified only in DBMS) 
• The initial state when the database is first populated 
• Then At any point in time, the database has a current state 
• schema evolution: when we need to change the schema 
school.Jan 29, 2002 
edhole.com
The Three-Schema Architecture 
• Importance of using DB approach 
– insulation of programs and data 
– support of multiple user views 
– use of a catalog to store the database description (schema). 
• The aim is to separate the user application and physical 
DB 
• schema can be defined into three levels: 
– The internal level has an internal schema 
– describes the physical storage structure of the database. 
– uses a physical data model 
school.Jan 29, 2002 
edhole.com
schJano 29o, 20l0.2edhole.com
The Three-Schema Architecture 
– The conceptual level has a conceptual schema describing the 
structure of the whole database for a community of users. 
– It hides the details of physical storage structures and 
concentrates on describing entities, data types, relationships, 
user operations, and constraints. 
– A high-level data model or an implementation data model 
can be used at this level. 
– The external or view level includes a number of external 
schemas or user views describing the part of the db that a 
particular user group is interested in and hides the rest of the 
db from that user group. 
– A high-level data model or an implementation data model 
can be used at this level. 
school.Jan 29, 2002 
edhole.com
Jan 29, 2002 
Data Independence 
• Is the capacity to change the schema at one level of a 
database system without having to change the schema at 
the next higher level. 
• Logical data independence: capacity to change the 
conceptual schema without having to change external 
schemas or application programs. 
• Physical data independence: capacity to change the 
internal schema without having to change the conceptual 
(or external) schemas 
school.edhole.com
Jan 29, 2002 
DBMS Languages 
• Data Definition Language DDL: Language to specify 
conceptual and internal schemas for the database and any 
mappings between the two. 
• Storage definition language SDL: used when clear 
distinction between conceptual and internal schema. 
• view definition language VDL: specify user views and 
their mappings to the conceptual schema. 
• data manipulation language DML:retrieval, insertion, 
deletion, and modification of the data 
school.edhole.com
Jan 29, 2002 
DBMS Languages ….. 
• SQL relational database language: represents a 
combination of DDL, VDL, and DML, as well as 
statements for constraint specification and schema 
evolution 
• There are two main types of DMLs: 
– A high-level or nonprocedural DML : specify complex DB 
operations. Example SQL(set-at-a-time) 
– A low-level or procedural DML: retrieve individual records 
or objects from DB and process each separately (record-at-a-time). 
school.edhole.com
Jan 29, 2002 
DBMS Interfaces 
• Menu-Based Interfaces for Browsing 
– menus leads to formulation of a request 
• Forms-Based Interfaces 
– display a form for each user (insert, select) 
– designed for naïve users. 
• Graphical User Interfaces (GUI) 
– display schema as diagram. 
– Utilize both menu and forms. 
school.edhole.com
Jan 29, 2002 
DBMS Interfaces 
• Natural Language Interfaces 
– Accept requests in native language and attempt to 
understand them. 
– Refers to words in the schema and (standard words) to 
interpret the request. 
• Interfaces for Parametric Users (eg tellers) 
– goal is to min the number of keystroks required. (use of 
function) keys 
• Interfaces for the DBA 
– creating accounts, system privileges, changing schema, 
schoole.tec.dhole.com
Jan 29, 2002 
The Database System 
Environment 
• DBMS Component Modules (fig 2.3) 
– db & DBMS stored in disk controlled by OS. 
– Stored data manager control access to DBMS 
– SDM puts data in buffers in main memory 
– DDL compiler process schema definitions and store it 
in meta data. 
– Run-time-data-proc handles DB accesses @runtime 
– receive update or retrieve and solve them on the DB 
– Query-Compiler: handles high level queries: parse, 
analyze and interpret uses DB access code. 
– Precompiler e school.edhole.cxotrmact DML commands from app program
schJano 29o, 20l0.2edhole.com
Database System Utilities 
• Loading: load existing files into the DB 
• Backup: creates backup copy of the DB 
• File reorganization: reorganize files for better 
performance 
• Performance monitoring: monitor DB usage and 
provide statistics to DBA 
school.Jan 29, 2002 
edhole.com
Tools, Application Environments 
& Communications Facilities 
• Case: design phase 
• data (information) repository: store catalog info, 
design decisions, usage, app program description, 
user information 
• Application Developer: e.g. power builder. Help 
in development of DB design, GUI, query, update 
etc. 
• Comm Software: allow users remotely to access 
the DB 
school.Jan 29, 2002 
edhole.com
Classification of DBManagement 
Jan 29, 2002 
Systems 
• Data model: 
– relational, object, object-relational, hierarchical, network, and 
other. 
• Number of users supported by the system. 
– Single-user systems and Multiuser systems 
• Number of sites over which the database is distributed. 
– centralized, distributed DBMS (DDBMS) ,Homogeneous 
DDBMSs ,federated DBMS (develop software to access 
several autonomous preexisting databases stored under 
heterogeneous DBMSs. ) 
school.edhole.com
Classification of DBManagement 
Jan 29, 2002 
Systems ….. 
• Cost of the DBMS: 10K-100K. Single 100-3K 
• General-purpose vs Special-purpose (When 
performance is a primary consideration. 
– Example: on-line transaction processing (OLTP) 
systems, which must support a large number of 
concurrent transactions without imposing excessive 
delays. ) 
school.edhole.com
schJano 29o, 20l0.2edhole.com

More Related Content

What's hot

2 database system concepts and architecture
2 database system concepts and architecture2 database system concepts and architecture
2 database system concepts and architecture
Kumar
 
Database Management System And Design Questions
Database Management System And Design QuestionsDatabase Management System And Design Questions
Database Management System And Design Questions
Samir Sabry
 

What's hot (20)

D B M S Animate
D B M S AnimateD B M S Animate
D B M S Animate
 
Ch01 database-conceptsppt4207
Ch01 database-conceptsppt4207Ch01 database-conceptsppt4207
Ch01 database-conceptsppt4207
 
Comparision
ComparisionComparision
Comparision
 
data manipulation language
data manipulation languagedata manipulation language
data manipulation language
 
Unit 3 rdbms study_materials-converted
Unit 3  rdbms study_materials-convertedUnit 3  rdbms study_materials-converted
Unit 3 rdbms study_materials-converted
 
Fundamentals of Database system
Fundamentals of Database systemFundamentals of Database system
Fundamentals of Database system
 
Bsc cs ii-dbms- u-ii-database system concepts and architecture
Bsc cs ii-dbms- u-ii-database system concepts and architectureBsc cs ii-dbms- u-ii-database system concepts and architecture
Bsc cs ii-dbms- u-ii-database system concepts and architecture
 
2 database system concepts and architecture
2 database system concepts and architecture2 database system concepts and architecture
2 database system concepts and architecture
 
Advance Database Management Systems -Object Oriented Principles In Database
Advance Database Management Systems -Object Oriented Principles In DatabaseAdvance Database Management Systems -Object Oriented Principles In Database
Advance Database Management Systems -Object Oriented Principles In Database
 
ORDBMS
ORDBMSORDBMS
ORDBMS
 
Database Management System And Design Questions
Database Management System And Design QuestionsDatabase Management System And Design Questions
Database Management System And Design Questions
 
Object-Relational Database Systems(ORDBMSs)
Object-Relational Database Systems(ORDBMSs)Object-Relational Database Systems(ORDBMSs)
Object-Relational Database Systems(ORDBMSs)
 
Adbms 3 main characteristics of the database approach
Adbms 3 main characteristics of the database approachAdbms 3 main characteristics of the database approach
Adbms 3 main characteristics of the database approach
 
Ch09
Ch09Ch09
Ch09
 
Chapter 6 Database SC025 2017/2018
Chapter 6 Database SC025 2017/2018Chapter 6 Database SC025 2017/2018
Chapter 6 Database SC025 2017/2018
 
Dbms
DbmsDbms
Dbms
 
Complete first chapter rdbm 17332
Complete first chapter rdbm 17332Complete first chapter rdbm 17332
Complete first chapter rdbm 17332
 
Database Languages.pptx
Database Languages.pptxDatabase Languages.pptx
Database Languages.pptx
 
Intro to Database Design
Intro to Database DesignIntro to Database Design
Intro to Database Design
 
Dbms Notes Lecture 3 : Types of database users
Dbms Notes Lecture 3 : Types of database usersDbms Notes Lecture 3 : Types of database users
Dbms Notes Lecture 3 : Types of database users
 

Similar to Top schools in gudgaon

Database system concepts
Database system conceptsDatabase system concepts
Database system concepts
Kumar
 
9a797dbms chapter1 b.sc2
9a797dbms chapter1 b.sc29a797dbms chapter1 b.sc2
9a797dbms chapter1 b.sc2
Mukund Trivedi
 
Database management system.pptx
Database management system.pptxDatabase management system.pptx
Database management system.pptx
AshmitKashyap1
 

Similar to Top schools in gudgaon (20)

Database system concepts
Database system conceptsDatabase system concepts
Database system concepts
 
9a797dbms chapter1 b.sc2
9a797dbms chapter1 b.sc29a797dbms chapter1 b.sc2
9a797dbms chapter1 b.sc2
 
Dbms module i
Dbms module iDbms module i
Dbms module i
 
Ch1.2_DB system Concepts and Architecture.pptx
Ch1.2_DB system Concepts and Architecture.pptxCh1.2_DB system Concepts and Architecture.pptx
Ch1.2_DB system Concepts and Architecture.pptx
 
Database Management System
Database Management SystemDatabase Management System
Database Management System
 
Unit 01 dbms
Unit 01 dbmsUnit 01 dbms
Unit 01 dbms
 
Database system concepts
Database system conceptsDatabase system concepts
Database system concepts
 
Database system
Database systemDatabase system
Database system
 
Database system
Database systemDatabase system
Database system
 
Unit01 dbms 2
Unit01 dbms 2Unit01 dbms 2
Unit01 dbms 2
 
Database management system.pptx
Database management system.pptxDatabase management system.pptx
Database management system.pptx
 
unit 1.pdf
unit 1.pdfunit 1.pdf
unit 1.pdf
 
Database system
Database systemDatabase system
Database system
 
Database system-DBMS
Database system-DBMSDatabase system-DBMS
Database system-DBMS
 
Database Lecture Notes
Database Lecture NotesDatabase Lecture Notes
Database Lecture Notes
 
DBMS introduction and functionality of of dbms
DBMS introduction and functionality of  of dbmsDBMS introduction and functionality of  of dbms
DBMS introduction and functionality of of dbms
 
Unit 2 DATABASE ESSENTIALS.pptx
Unit 2 DATABASE ESSENTIALS.pptxUnit 2 DATABASE ESSENTIALS.pptx
Unit 2 DATABASE ESSENTIALS.pptx
 
DBMS
DBMS DBMS
DBMS
 
DBMS architecture &; system structure
DBMS architecture &; system  structureDBMS architecture &; system  structure
DBMS architecture &; system structure
 
DatabaseManagementSystem.pptx
DatabaseManagementSystem.pptxDatabaseManagementSystem.pptx
DatabaseManagementSystem.pptx
 

More from Edhole.com

More from Edhole.com (20)

Ca in patna
Ca in patnaCa in patna
Ca in patna
 
Chartered accountant in dwarka
Chartered accountant in dwarkaChartered accountant in dwarka
Chartered accountant in dwarka
 
Ca in dwarka
Ca in dwarkaCa in dwarka
Ca in dwarka
 
Ca firm in dwarka
Ca firm in dwarkaCa firm in dwarka
Ca firm in dwarka
 
Website development company surat
Website development company suratWebsite development company surat
Website development company surat
 
Website designing company in surat
Website designing company in suratWebsite designing company in surat
Website designing company in surat
 
Website dsigning company in india
Website dsigning company in indiaWebsite dsigning company in india
Website dsigning company in india
 
Website designing company in delhi
Website designing company in delhiWebsite designing company in delhi
Website designing company in delhi
 
Ca in patna
Ca in patnaCa in patna
Ca in patna
 
Chartered accountant in dwarka
Chartered accountant in dwarkaChartered accountant in dwarka
Chartered accountant in dwarka
 
Ca firm in dwarka
Ca firm in dwarkaCa firm in dwarka
Ca firm in dwarka
 
Ca in dwarka
Ca in dwarkaCa in dwarka
Ca in dwarka
 
Website development company surat
Website development company suratWebsite development company surat
Website development company surat
 
Website designing company in surat
Website designing company in suratWebsite designing company in surat
Website designing company in surat
 
Website designing company in india
Website designing company in indiaWebsite designing company in india
Website designing company in india
 
Website designing company in delhi
Website designing company in delhiWebsite designing company in delhi
Website designing company in delhi
 
Website designing company in mumbai
Website designing company in mumbaiWebsite designing company in mumbai
Website designing company in mumbai
 
Website development company surat
Website development company suratWebsite development company surat
Website development company surat
 
Website desinging company in surat
Website desinging company in suratWebsite desinging company in surat
Website desinging company in surat
 
Website designing company in india
Website designing company in indiaWebsite designing company in india
Website designing company in india
 

Recently uploaded

BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
SoniaTolstoy
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
QucHHunhnh
 

Recently uploaded (20)

INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpin
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 

Top schools in gudgaon

  • 1. Top schools in Gudgaon By: school.edhole.com
  • 2. Database System Concepts and Architecture Dr. Ali Obaidi school.edhole.com
  • 3. Data Models • A collection of concepts that can be used to describe the structure of a database (data types, relationships, and constraints) • basic operations (retrieval and updates) • specify the dynamic aspect or behavior of a database application( user-defined operations ) • example: COMPUTE_GPA, which can be applied to a STUDENT object school.edhole.com
  • 4. Categories of Data Models • High-level or conceptual data models (common users) • low-level or physical data models (describe the details of how data is stored ) • in between, representational (or implementation) data models can serve both categories above school.Jan 29, 2002 edhole.com
  • 5. Jan 29, 2002 Conceptual Data Model • Use concepts such as – Entities:a real-world object or concept (DEPT) (COURSE) – Attributes:property of interest that further describes an entity (dept no, name, telephone, etc) – Relationships:interaction among the entities (DEPT) provides (COURSE) school.edhole.com
  • 6. Jan 29, 2002 Physical Data Model • Describes how data is stored in the computer. • It represents info such as – record formats – record orderings – access path: make search more efficient school.edhole.com
  • 7. Representational Data Model • Used in traditional commercial DMBS • they include – Relational Data model – Network model – Hierarchical model school.Jan 29, 2002 edhole.com
  • 8. Jan 29, 2002 Schemas • Is the description of the database (not database itself) – Specified during database design – Not expected to change frequently – A displayed schema is called a schema diagram (Fig 2.1) • Each object in the schema-such as STUDENT or COURSE-is a schema construct. • Schema diagram represents only some aspects of a schema (name of record type, data element and some type of constraint) school.edhole.com
  • 10. Instances and Database State • The data in the database at a particular moment in time is called a database state or snapshot or current set of occurrences or instances in the database • When we define a new database we have database state is empty state (schema specified only in DBMS) • The initial state when the database is first populated • Then At any point in time, the database has a current state • schema evolution: when we need to change the schema school.Jan 29, 2002 edhole.com
  • 11. The Three-Schema Architecture • Importance of using DB approach – insulation of programs and data – support of multiple user views – use of a catalog to store the database description (schema). • The aim is to separate the user application and physical DB • schema can be defined into three levels: – The internal level has an internal schema – describes the physical storage structure of the database. – uses a physical data model school.Jan 29, 2002 edhole.com
  • 13. The Three-Schema Architecture – The conceptual level has a conceptual schema describing the structure of the whole database for a community of users. – It hides the details of physical storage structures and concentrates on describing entities, data types, relationships, user operations, and constraints. – A high-level data model or an implementation data model can be used at this level. – The external or view level includes a number of external schemas or user views describing the part of the db that a particular user group is interested in and hides the rest of the db from that user group. – A high-level data model or an implementation data model can be used at this level. school.Jan 29, 2002 edhole.com
  • 14. Jan 29, 2002 Data Independence • Is the capacity to change the schema at one level of a database system without having to change the schema at the next higher level. • Logical data independence: capacity to change the conceptual schema without having to change external schemas or application programs. • Physical data independence: capacity to change the internal schema without having to change the conceptual (or external) schemas school.edhole.com
  • 15. Jan 29, 2002 DBMS Languages • Data Definition Language DDL: Language to specify conceptual and internal schemas for the database and any mappings between the two. • Storage definition language SDL: used when clear distinction between conceptual and internal schema. • view definition language VDL: specify user views and their mappings to the conceptual schema. • data manipulation language DML:retrieval, insertion, deletion, and modification of the data school.edhole.com
  • 16. Jan 29, 2002 DBMS Languages ….. • SQL relational database language: represents a combination of DDL, VDL, and DML, as well as statements for constraint specification and schema evolution • There are two main types of DMLs: – A high-level or nonprocedural DML : specify complex DB operations. Example SQL(set-at-a-time) – A low-level or procedural DML: retrieve individual records or objects from DB and process each separately (record-at-a-time). school.edhole.com
  • 17. Jan 29, 2002 DBMS Interfaces • Menu-Based Interfaces for Browsing – menus leads to formulation of a request • Forms-Based Interfaces – display a form for each user (insert, select) – designed for naïve users. • Graphical User Interfaces (GUI) – display schema as diagram. – Utilize both menu and forms. school.edhole.com
  • 18. Jan 29, 2002 DBMS Interfaces • Natural Language Interfaces – Accept requests in native language and attempt to understand them. – Refers to words in the schema and (standard words) to interpret the request. • Interfaces for Parametric Users (eg tellers) – goal is to min the number of keystroks required. (use of function) keys • Interfaces for the DBA – creating accounts, system privileges, changing schema, schoole.tec.dhole.com
  • 19. Jan 29, 2002 The Database System Environment • DBMS Component Modules (fig 2.3) – db & DBMS stored in disk controlled by OS. – Stored data manager control access to DBMS – SDM puts data in buffers in main memory – DDL compiler process schema definitions and store it in meta data. – Run-time-data-proc handles DB accesses @runtime – receive update or retrieve and solve them on the DB – Query-Compiler: handles high level queries: parse, analyze and interpret uses DB access code. – Precompiler e school.edhole.cxotrmact DML commands from app program
  • 21. Database System Utilities • Loading: load existing files into the DB • Backup: creates backup copy of the DB • File reorganization: reorganize files for better performance • Performance monitoring: monitor DB usage and provide statistics to DBA school.Jan 29, 2002 edhole.com
  • 22. Tools, Application Environments & Communications Facilities • Case: design phase • data (information) repository: store catalog info, design decisions, usage, app program description, user information • Application Developer: e.g. power builder. Help in development of DB design, GUI, query, update etc. • Comm Software: allow users remotely to access the DB school.Jan 29, 2002 edhole.com
  • 23. Classification of DBManagement Jan 29, 2002 Systems • Data model: – relational, object, object-relational, hierarchical, network, and other. • Number of users supported by the system. – Single-user systems and Multiuser systems • Number of sites over which the database is distributed. – centralized, distributed DBMS (DDBMS) ,Homogeneous DDBMSs ,federated DBMS (develop software to access several autonomous preexisting databases stored under heterogeneous DBMSs. ) school.edhole.com
  • 24. Classification of DBManagement Jan 29, 2002 Systems ….. • Cost of the DBMS: 10K-100K. Single 100-3K • General-purpose vs Special-purpose (When performance is a primary consideration. – Example: on-line transaction processing (OLTP) systems, which must support a large number of concurrent transactions without imposing excessive delays. ) school.edhole.com