SlideShare uma empresa Scribd logo
1 de 42
Baixar para ler offline
2 December 2005
Introduction to Databases
DBMS Architectures and Features
Prof. Beat Signer
Department of Computer Science
Vrije Universiteit Brussel
http://www.beatsigner.com
Beat Signer - Department of Computer Science - bsigner@vub.ac.be 2March 31, 2017
DBMS Components
Access
Methods
System
Buffers
Authorisation
Control
Integrity
Checker
Command
Processor
Program
Object Code
DDL
Compiler
File
Manager
Buffer
Manager
Recovery
Manager
Scheduler
Query
Optimiser
Transaction
Manager
Query
Compiler
Queries
Catalogue
Manager
DML
Preprocessor
Database
Schema
Application
Programs
Database
Manager
Data
Manager
DBMS
Programmers Users DB Admins
Based on 'Components of a DBMS', Database Systems,
T. Connolly and C. Begg, Addison-Wesley 2010
Data, Indices and
System Catalogue
Beat Signer - Department of Computer Science - bsigner@vub.ac.be 3March 31, 2017
DBMS Components ...
 DML preprocessor
 transforms embedded SQL statements into statements of the host
language
 interacts with the query compiler to generate the appropriate host
language code
 Query compiler
 transforms queries into a set of low-level instructions (query plan)
which are forwarded to the database manager component
 DDL compiler
 converts a set of DDL statements into a set of tables
 tables and metadata are stored in the system catalogue
(catalogue manager)
Beat Signer - Department of Computer Science - bsigner@vub.ac.be 4March 31, 2017
DBMS Components ...
 Catalogue manager
 provides access and manages the system catalogue
 used by most DBMS components
 Database manager
 processes user-submitted queries
 interfaces with application programs
 contains a set of components
- query optimiser
- transaction manager
- ...
Beat Signer - Department of Computer Science - bsigner@vub.ac.be 5March 31, 2017
Database Manager Components
 Authorisation control
 checks whether as user has the necessary rights to execute a
specific operation
 Command processor
 executes the steps of a given query plan handed over by the
authorisation control component
 Integrity checker
 ensures that the operation is not going to violate any integrity
constraints (e.g. key constraints)
 Query optimiser
 computes an optimal query execution strategy
 transforms the initial query plan into the best available sequence
of operations on the given data
Beat Signer - Department of Computer Science - bsigner@vub.ac.be 6March 31, 2017
Database Manager Components ...
 Transaction manager
 processes any transaction-specific operations
 Scheduler
 manages the relative order in which transaction operations are
executed
 Recovery manager
 deals with commits and aborts of transactions
 ensures that the database remains in a consistent state in case of
failures
 Buffer manager
 transfers data between main memory and secondary storage
Beat Signer - Department of Computer Science - bsigner@vub.ac.be 7March 31, 2017
DBMS Architectures
 There is a wide variety of different DBMS architectures
 Teleprocessing
 File-Server Architecture
 Two-Tier Client-Server Architecture
 Three-Tier Client Server Architecture
 N-Tier Architecture
 Peer-to-Peer Architecture
 Distributed DBMS
 Service-Oriented Architecture
 Cloud Architecture
 ...
Beat Signer - Department of Computer Science - bsigner@vub.ac.be 8March 31, 2017
Teleprocessing
 Traditional multi-user system architecture
 single mainframe and multiple (dumb) terminals
 Heavy load on the central mainframe
 runs application programs and DBMS
 formats data for presentation on terminals
Mainframe
Terminal 1
Terminal 2
Terminal 3
Terminal n
Beat Signer - Department of Computer Science - bsigner@vub.ac.be 9March 31, 2017
Teleprocessing ...
 Tendency to replace expensive mainframes with network
of personal computers (downsizing)
 file-server architectures
 client-server architectures
 ...
Beat Signer - Department of Computer Science - bsigner@vub.ac.be 10March 31, 2017
File-Server Architecture
 A file-server is a computer that is connected to a network
and mainly serves as a shared storage
 e.g. for realising shared access to a database
 In a file-server architecture the processing is distributed
over the network
 workstations (application and DBMS) request data (files)
Workstation 2 (DBMS) Workstation n (DBMS)
Workstation 1 (DBMS) File-Server
Database
data request
file
LAN or
WAN
Beat Signer - Department of Computer Science - bsigner@vub.ac.be 11March 31, 2017
File-Server Architecture ...
 SQL Request Example
 Since the file-server is not SQL-aware, the Customer and
Order relations (files) have to be transferred to the client
 Disadvantages
 heavy network traffic
 high total costs of ownership (TCO)
- maintain a full instance of the DBMS on each client (workstation)
 complex integrity, concurrency and recovery control
- multiple DBMSs may concurrently access the same shared file
SELECT name, street
FROM Customer, Order
WHERE Order.customerID = Customer.customerID AND name = 'Max Frisch';
Beat Signer - Department of Computer Science - bsigner@vub.ac.be 12March 31, 2017
Two-Tier Client-Server Architecture
 Application consists of a client (first tier) and a server
(second tier) that might run on different machines
 clear separation of concerns between client and server
 thin client vs. thick client
- less or more application logic on the client side
 Supports decentralised business environments
LAN or
WAN
Client 2 Client n
Client 1 Server (DBMS)
Database
data request
selected data
Beat Signer - Department of Computer Science - bsigner@vub.ac.be 13March 31, 2017
Two-Tier Client-Server Architecture ...
 Client (first tier) tasks
 presentation of data (user interface)
 business and data processing logic
 send database requests to the server and process the results
 Server (second tier) tasks
 manage (concurrent) database access (data services)
- authorisation, integrity checks, query/update processing, recovery control, ...
 business logic (e.g. validation of data)
 Different possible client-server topologies
 single client and single server
 multiple clients and single server
 multiple clients and multiple servers
Beat Signer - Department of Computer Science - bsigner@vub.ac.be 14March 31, 2017
Two-Tier Client-Server Architecture ...
 Communication between client and server via inter-
process communication (IPC) or over network
 special protocols such as ODBC (JDBC) introduced earlier in the
course when discussing the Call Level Interface (CLI)
 Advantages
 increased performance
- certain tasks performed in parallel and server can be tuned for DB processing
 reduced communication costs
- only selected data is transferred
 reduced hardware costs
- only server has to run a DBMS
 increased consistency/security through separation of concerns
- constraint checking in a single place (server)
Beat Signer - Department of Computer Science - bsigner@vub.ac.be 15March 31, 2017
Two-Tier Client-Server Architecture ...
 Disadvantages
 limitations in terms of enterprise scalability with thousands of
potential clients
- significant client-side administration overhead
• e.g. expensive deployment of new busines and data application logic
- thick client requires a considerable amount of resources (CPU, RAM, ...) to run
applications efficiently
Beat Signer - Department of Computer Science - bsigner@vub.ac.be 16March 31, 2017
Three-Tier Client-Server Architecture
 In the 1990s, the three-tier client-server architecture was
introduced to address the enterprise scalability problem
 e.g. driven by emerging web applications
 Application consists of a presentation tier (client),
a logic tier (application server) and a data tier
(database server) that might run on different platforms
LAN or
WAN
Client 1 Database Server
Database
data request
selected data
Client 2 Client n
Application Server
Beat Signer - Department of Computer Science - bsigner@vub.ac.be 17March 31, 2017
Three-Tier Client-Server Architecture ...
 Presentation tier (first tier) tasks
 presentation of data (user interface)
 basic input validation (thin client)
 send requests to the server and visualise results
 Logic tier (second tier / middle tier) tasks
 business logic
 data processing logic
 Data tier (third tier) tasks
 basic data validation
 manage (concurrent) database access (data services)
- authorisation, integrity checks, query/update processing, recovery control, ...
Beat Signer - Department of Computer Science - bsigner@vub.ac.be 18March 31, 2017
Three-Tier Client-Server Architecture ...
 Advantages
 reduced costs for thin clients due to lower resource requirements
(CPU, RAM, ...)
- e.g. applications running in a web browser
 application logic is centralised in a single application server
- reduces the software distribution problem (updates) that is present in
two-tier client-server architectures
 increased modularity
- easier to replace one tier without affecting the other tiers
 load balancing becomes easier with a clear separation between
the core business logic and the database functionality
Beat Signer - Department of Computer Science - bsigner@vub.ac.be 19March 31, 2017
Web Information Systems (WIS)
 The three-tier architecture maps very naturally to web
environments
 browser as a thin client, application server and database server
 The move towards thin browser clients has dramatically
reduced the costs for software deployment
Internet
HTTP Request
HTTP Response
Client Application
Server
DB Server
Database
Beat Signer - Department of Computer Science - bsigner@vub.ac.be 20March 31, 2017
N-Tier Architecture
 The three-tier architecture can be extended with
additional intermediary tiers for increased flexibility
 e.g. separation between web server and application server in the
previous web information system example
- increases the flexibility for load balancing by introducing multiple web servers
- only dynamic content delivered by the application server whereas static
content is directly managed by the web server
Internet
HTTP Request
HTTP Response
Client
Application
Server
HTML Pages
Web
Server
DB Server
Database
Beat Signer - Department of Computer Science - bsigner@vub.ac.be 21March 31, 2017
Peer-to-Peer Architecture
 Systems exchanging information and services in a peer-
to-peer-like manner without a central authority
 no global schema  need for schema integration (matching)
 Data and service sharing
 no dedicated clients and servers
 sites may dynamically form new client/server relationships
LAN or
WAN
Site 3
Site n
Database 3
Site 2
Database 2
Site 1
Database 1
Database n
Beat Signer - Department of Computer Science - bsigner@vub.ac.be 22March 31, 2017
Middleware
 Software that connects (mediates) between software
components or applications
 hide complexity of heterogenous and distributed components
(e.g. servers) and provide a uniform interface
 There exist different types of middleware
 remote procedure call (RPC)
- Java RMI
- CORBA
- XML RPC
 asynchronous publish/subscribe
- subscribe for different types of messages
 SQL-oriented data access
- open database connectivity (ODBC), JDBC, ...
 ...
Beat Signer - Department of Computer Science - bsigner@vub.ac.be 23March 31, 2017
Transaction Processing Monitor
 Complex applications can be built on top of several
resource managers
 e.g. multiple DBMSs, operating systems, ...
 A Transaction Processing Monitor (TP Monitor) is a
middleware component that provides uniform access to
the services of a number of resource managers
DB Server 1
Database 1
DB Server n
Database n
TP Monitor
Service 1
Service r
.
.
.
Client 1
Client m Application Server
Beat Signer - Department of Computer Science - bsigner@vub.ac.be 24March 31, 2017
Transaction Processing Monitor ...
 A TP Monitor offers a number of advantages
 transaction routing
- increase scalability by directing transactions to specific DBMSs
 distributed transaction management
- manage transactions that require access to multiple heterogeneous DBMSs
- e.g. based on XA standard for distributed transaction processing
 load balancing
- balance requests across multiple DBMSs by directing to least loaded server
 funelling
- establish connections with DBMSs and funnel user requests through these
connections thereby reducing the number of required connections
 increased reliability
- if a DBMS fails, the TP monitor can resubmit the request to another DBMS or
hold the transaction request until the DBMS becomes available and resubmit
Beat Signer - Department of Computer Science - bsigner@vub.ac.be 25March 31, 2017
Parallel Database Architectures
 Parallel machines (multiple processors) can be used to
speed up the transaction processing
 Different models for parallel database architectures
 shared memory, shared disk, shared nothing and hierarchical
Processor Memory
Processor
Processor
Disk
Disk
shared memory
Processor
Processor
Processor
Disk
Disk
shared disk
Memory
Memory
Memory
Processor
Disk
shared nothing
Memory
Processor
Disk
Memory
Beat Signer - Department of Computer Science - bsigner@vub.ac.be 26March 31, 2017
Parallel Database Architectures ...
 Shared memory
 processors and disks have access to a shared memory via a bus
 very efficient communication between processors
 not scalable since bus becomes a bottleneck
 Shared disk
 all processors can access all disks via an interconnection network
 each processor has its own memory
 certain degree of fault tolerance if processor/memory fails
 also disks maybe have fault tollerance (e.g. RAID architecture)
 interconnection to the disk systems becomes bottleneck
Beat Signer - Department of Computer Science - bsigner@vub.ac.be 27March 31, 2017
Parallel Database Architectures ...
 Shared nothing
 each node consists of a processor, memory and one or
more disks
 high-speed interconnection network between processors
 more scalable than shared memory or shared disk model
 increased communication costs for non-local disk access
 Hierarchical
 combines the different models (composition)
 top level is shared nothing between nodes
- each node can be a shared memory or shared disk "subsystem"
Beat Signer - Department of Computer Science - bsigner@vub.ac.be 28March 31, 2017
Distributed DBMS (DDBMS)
 Distributed database
 logically related collection of shared data and metadata that is
distributed over a network
 Distributed DBMS
 software system to manage the distributed database in a
transparent way
LAN or
WAN
Site 3
Site n
Database
Site 2
Database
Site 1
Database Database
Beat Signer - Department of Computer Science - bsigner@vub.ac.be 29March 31, 2017
Distributed DBMS (DDBMS) ...
 Distinction between local and global transactions
 local transaction
- accesses only data from the site from which the transaction was initiated
 global transaction
- accesses data from several different sites
 Reasons for building a distributed DBMS
 data sharing
- possibility to access data that resides at other sides
 autonomy
- each site retains a certain degree of control over the local data
 availability
- if one site fails the other sites may still be able to continue operating
- data might be replicated at serveral sites for increased availability
Beat Signer - Department of Computer Science - bsigner@vub.ac.be 30March 31, 2017
Distributed DBMS (DDBMS) ...
 Reasons for building a distributed DBMS ...
 costs and scalability
- use cluster of PCs instead of large mainframe systems
 integration of existing DBMS
- coexistence of legacy systems with new applications
 dynamic organisational structure
- mergers and acquisitions
 Implementation issues
 transactions have to be executed atomically accross different
sites (two-phase commit protocol)
- commit decission is left to a single coordinator
 distributed concurrency control
- deadlock detection has to be carried out across multiple sites
Beat Signer - Department of Computer Science - bsigner@vub.ac.be 31March 31, 2017
Service-Oriented Architectures (SOA)
 Architecture that modularises functionality as
interoperable services
 loose coupling of services
 service encapsulation
 interoperability between different operating systems and
programming languages
 new services can be defined as a mashup of existing services
 Service-oriented database architecture (SODA)
 e.g. single SQL Server processes acting as service providers
Beat Signer - Department of Computer Science - bsigner@vub.ac.be 32March 31, 2017
Service-Oriented Architectures (SOA) ...
 Share business logic, data and processes via web
service APIs
 Big Web Services
- Universal Description, Discovery and Integration (UDDI)
- Web Services Description Language (WSDL)
- Simple Object Access Protocol (SOAP)
 RESTful Web Services
 Web services are based on established technologies
such as the Extensible Markup Language (XML)
 Special service orchestration languages for the use of
services
 e.g. Business Process Execution Language (BPEL)
Beat Signer - Department of Computer Science - bsigner@vub.ac.be 33March 31, 2017
Cloud Computing
 Internet-based computing with on-demand and pay-per-
use access to shared resources, data and software
 Main characteristics
 web-based access (e.g. Web Service API or browser)
 pay only for the services that are actually used (pay-per-use)
 no initial investment (e.g. for resources) required
The Cloud
Google
Microsoft
Amazon
Yahoo
Client 1
Client 2
Client 3
Client n
Beat Signer - Department of Computer Science - bsigner@vub.ac.be 34March 31, 2017
Cloud Computing ...
 Cloud services
 infrastructure as a service (IaaS)
- OS virtualisation
- e.g. Amazon EC2, Rackspace, ...
 platform as a service (PaaS)
- provide platform to run applications
- e.g. Google App Engine, Windows Azure Platform, ...
 software as a service (SaaS)
- provide software as a service over the Internet
- e.g. Google Docs, ...
 Cloud service vendor gets some degree of control
Beat Signer - Department of Computer Science - bsigner@vub.ac.be 35March 31, 2017
Cloud Computing ...
 New challenges for database management
in cloud computing
 cloud database server might be less reliable
- might become difficult to guarantee a specific quality of service (QoS) for an
application realised in the cloud
 backup, replication, ...
 Online or web-based databases
 store data in the cloud or on servers on the Internet
Beat Signer - Department of Computer Science - bsigner@vub.ac.be 36March 31, 2017
Cloud Data Service Example
 Amazon Simple Storage Service (Amazon S3)
 online storage service with unlimited storage space
 store objects (up to 5 TB in size) in buckets
 Web Service API
 Amazon SimpleDB
 distributed database written in Erlang
 offers a Web Service API
 makes use of S3 and EC2
 on demand scaling
 non-relational data store
- schemaless
- hashtables with set of key value pairs
- eventual consistency
Beat Signer - Department of Computer Science - bsigner@vub.ac.be 37March 31, 2017
Mobile DBMS
 Users want access to information on the move via mobile
devices
 tourist information systems
 salesperson who is visiting their customers
 emergency services
 ...
 New requirements for mobile DBMSs
 small footprint databases that can run on mobile devices with
limited resources
- e.g. db4objects, http://www.db4o.com
 location-dependent queries
 context-aware queries
Beat Signer - Department of Computer Science - bsigner@vub.ac.be 38March 31, 2017
Mobile DBMS ...
 New requirements for mobile DBMSs ...
 communicate with centralised database server via wireless
network or fixed Internet connections
 replicate data on a centralised server and on a mobile device
- synchronisation challenges
 caching of data and transactions to cope with potential network
connection failures
 opportunistic (peer-to-peer based) information exchange with
other mobile DBMSs
- e.g. dynamic P2P Bluetooth connections with other devices in range
(proximity-based information exchange)
 security
- which portion of a database can/should be replicated on a mobile device?
 ...
Beat Signer - Department of Computer Science - bsigner@vub.ac.be 39March 31, 2017
Homework
 Study the following chapter of the
Database System Concepts book
 chapter 17
- sections 17.1-17.6
- Database-System Architectures
Beat Signer - Department of Computer Science - bsigner@vub.ac.be 40March 31, 2017
Exercise 7
 Structured Query Language (SQL)
 JDBC
Beat Signer - Department of Computer Science - bsigner@vub.ac.be 41March 31, 2017
References
 A. Silberschatz, H. Korth and S. Sudarshan,
Database System Concepts (Sixth Edition),
McGraw-Hill, 2010
 T. Connolly and C. Begg, Database Systems: A Practical
Approach to Design, Implementation and Management
(Fifth Edition), Addison-Wesley, 2010
2 December 2005
Next Lecture
Storage Management

Mais conteúdo relacionado

Mais procurados

Load balancing in cloud computing.pptx
Load balancing in cloud computing.pptxLoad balancing in cloud computing.pptx
Load balancing in cloud computing.pptxHitesh Mohapatra
 
Distributed Database System
Distributed Database SystemDistributed Database System
Distributed Database SystemSulemang
 
Introduction to Database Management System
Introduction to Database Management SystemIntroduction to Database Management System
Introduction to Database Management SystemHitesh Mohapatra
 
Data base management system
Data base management systemData base management system
Data base management systemNavneet Jingar
 
Relational database- Fundamentals
Relational database- FundamentalsRelational database- Fundamentals
Relational database- FundamentalsMohammed El Hedhly
 
Distributed Database Management System
Distributed Database Management SystemDistributed Database Management System
Distributed Database Management SystemAAKANKSHA JAIN
 
Big Data Analytics with Hadoop
Big Data Analytics with HadoopBig Data Analytics with Hadoop
Big Data Analytics with HadoopPhilippe Julio
 
DATA WAREHOUSE IMPLEMENTATION BY SAIKIRAN PANJALA
DATA WAREHOUSE IMPLEMENTATION BY SAIKIRAN PANJALADATA WAREHOUSE IMPLEMENTATION BY SAIKIRAN PANJALA
DATA WAREHOUSE IMPLEMENTATION BY SAIKIRAN PANJALASaikiran Panjala
 
Data base management system
Data base management systemData base management system
Data base management systemashirafzal1
 
Distributed database management systems
Distributed database management systemsDistributed database management systems
Distributed database management systemsDhani Ahmad
 
9. Object Relational Databases in DBMS
9. Object Relational Databases in DBMS9. Object Relational Databases in DBMS
9. Object Relational Databases in DBMSkoolkampus
 
2 database system concepts and architecture
2 database system concepts and architecture2 database system concepts and architecture
2 database system concepts and architectureKumar
 
4 the relational data model and relational database constraints
4 the relational data model and relational database constraints4 the relational data model and relational database constraints
4 the relational data model and relational database constraintsKumar
 
Database Administration
Database AdministrationDatabase Administration
Database AdministrationBilal Arshad
 

Mais procurados (20)

Load balancing in cloud computing.pptx
Load balancing in cloud computing.pptxLoad balancing in cloud computing.pptx
Load balancing in cloud computing.pptx
 
File organisation
File organisationFile organisation
File organisation
 
Distributed Database System
Distributed Database SystemDistributed Database System
Distributed Database System
 
Relational databases
Relational databasesRelational databases
Relational databases
 
Introduction to Database Management System
Introduction to Database Management SystemIntroduction to Database Management System
Introduction to Database Management System
 
Elmasri Navathe DBMS Unit-1 ppt
Elmasri Navathe DBMS Unit-1 pptElmasri Navathe DBMS Unit-1 ppt
Elmasri Navathe DBMS Unit-1 ppt
 
Data base management system
Data base management systemData base management system
Data base management system
 
Relational database- Fundamentals
Relational database- FundamentalsRelational database- Fundamentals
Relational database- Fundamentals
 
Distributed Database Management System
Distributed Database Management SystemDistributed Database Management System
Distributed Database Management System
 
Big Data Analytics with Hadoop
Big Data Analytics with HadoopBig Data Analytics with Hadoop
Big Data Analytics with Hadoop
 
DATA WAREHOUSE IMPLEMENTATION BY SAIKIRAN PANJALA
DATA WAREHOUSE IMPLEMENTATION BY SAIKIRAN PANJALADATA WAREHOUSE IMPLEMENTATION BY SAIKIRAN PANJALA
DATA WAREHOUSE IMPLEMENTATION BY SAIKIRAN PANJALA
 
Data base management system
Data base management systemData base management system
Data base management system
 
Distributed database management systems
Distributed database management systemsDistributed database management systems
Distributed database management systems
 
Dbms and rdbms
Dbms and rdbmsDbms and rdbms
Dbms and rdbms
 
9. Object Relational Databases in DBMS
9. Object Relational Databases in DBMS9. Object Relational Databases in DBMS
9. Object Relational Databases in DBMS
 
2 database system concepts and architecture
2 database system concepts and architecture2 database system concepts and architecture
2 database system concepts and architecture
 
4 the relational data model and relational database constraints
4 the relational data model and relational database constraints4 the relational data model and relational database constraints
4 the relational data model and relational database constraints
 
Parallel Database
Parallel DatabaseParallel Database
Parallel Database
 
Database Administration
Database AdministrationDatabase Administration
Database Administration
 
2 tier and 3 tier architecture
2 tier and 3 tier architecture2 tier and 3 tier architecture
2 tier and 3 tier architecture
 

Destaque

Structured Query Language (SQL) - Lecture 5 - Introduction to Databases (1007...
Structured Query Language (SQL) - Lecture 5 - Introduction to Databases (1007...Structured Query Language (SQL) - Lecture 5 - Introduction to Databases (1007...
Structured Query Language (SQL) - Lecture 5 - Introduction to Databases (1007...Beat Signer
 
Database system architecture
Database system architectureDatabase system architecture
Database system architectureDk Rukshan
 
Architecture of-dbms-and-data-independence
Architecture of-dbms-and-data-independenceArchitecture of-dbms-and-data-independence
Architecture of-dbms-and-data-independenceAnuj Modi
 
Database Architecture and Basic Concepts
Database Architecture and Basic ConceptsDatabase Architecture and Basic Concepts
Database Architecture and Basic ConceptsTony Wong
 
Database Design Slide 1
Database Design Slide 1Database Design Slide 1
Database Design Slide 1ahfiki
 
Cross-Media Information Spaces and Architectures (CISA)
Cross-Media Information Spaces and Architectures (CISA)Cross-Media Information Spaces and Architectures (CISA)
Cross-Media Information Spaces and Architectures (CISA)Beat Signer
 
physical and logical data independence
physical and logical data independencephysical and logical data independence
physical and logical data independenceapoorva_upadhyay
 
Chapter 1 Fundamentals of Database Management System
Chapter 1 Fundamentals of Database Management SystemChapter 1 Fundamentals of Database Management System
Chapter 1 Fundamentals of Database Management SystemEddyzulham Mahluzydde
 
Database Management Systems (DBMS)
Database Management Systems (DBMS)Database Management Systems (DBMS)
Database Management Systems (DBMS)Dimara Hakim
 
Single User v/s Multi User Databases
Single User v/s Multi User DatabasesSingle User v/s Multi User Databases
Single User v/s Multi User DatabasesRaminder Pal Singh
 
Database management system presentation
Database management system presentationDatabase management system presentation
Database management system presentationsameerraaj
 
Paper-Digital User Interfaces - Applications, Frameworks and Future Challenges
Paper-Digital User Interfaces - Applications, Frameworks and Future ChallengesPaper-Digital User Interfaces - Applications, Frameworks and Future Challenges
Paper-Digital User Interfaces - Applications, Frameworks and Future ChallengesBeat Signer
 

Destaque (19)

Structured Query Language (SQL) - Lecture 5 - Introduction to Databases (1007...
Structured Query Language (SQL) - Lecture 5 - Introduction to Databases (1007...Structured Query Language (SQL) - Lecture 5 - Introduction to Databases (1007...
Structured Query Language (SQL) - Lecture 5 - Introduction to Databases (1007...
 
Dbms architecture
Dbms architectureDbms architecture
Dbms architecture
 
Database system architecture
Database system architectureDatabase system architecture
Database system architecture
 
Architecture of-dbms-and-data-independence
Architecture of-dbms-and-data-independenceArchitecture of-dbms-and-data-independence
Architecture of-dbms-and-data-independence
 
Database System Architectures
Database System ArchitecturesDatabase System Architectures
Database System Architectures
 
Database Architecture and Basic Concepts
Database Architecture and Basic ConceptsDatabase Architecture and Basic Concepts
Database Architecture and Basic Concepts
 
Data Base Management System
Data Base Management SystemData Base Management System
Data Base Management System
 
Dbms slides
Dbms slidesDbms slides
Dbms slides
 
Database Design Slide 1
Database Design Slide 1Database Design Slide 1
Database Design Slide 1
 
Cross-Media Information Spaces and Architectures (CISA)
Cross-Media Information Spaces and Architectures (CISA)Cross-Media Information Spaces and Architectures (CISA)
Cross-Media Information Spaces and Architectures (CISA)
 
Distributed dbms
Distributed dbmsDistributed dbms
Distributed dbms
 
Data independence
Data independenceData independence
Data independence
 
physical and logical data independence
physical and logical data independencephysical and logical data independence
physical and logical data independence
 
Chapter 1 Fundamentals of Database Management System
Chapter 1 Fundamentals of Database Management SystemChapter 1 Fundamentals of Database Management System
Chapter 1 Fundamentals of Database Management System
 
Database Management Systems (DBMS)
Database Management Systems (DBMS)Database Management Systems (DBMS)
Database Management Systems (DBMS)
 
Basic DBMS ppt
Basic DBMS pptBasic DBMS ppt
Basic DBMS ppt
 
Single User v/s Multi User Databases
Single User v/s Multi User DatabasesSingle User v/s Multi User Databases
Single User v/s Multi User Databases
 
Database management system presentation
Database management system presentationDatabase management system presentation
Database management system presentation
 
Paper-Digital User Interfaces - Applications, Frameworks and Future Challenges
Paper-Digital User Interfaces - Applications, Frameworks and Future ChallengesPaper-Digital User Interfaces - Applications, Frameworks and Future Challenges
Paper-Digital User Interfaces - Applications, Frameworks and Future Challenges
 

Semelhante a DBMS Architectures and Features - Lecture 7 - Introduction to Databases (1007156ANR)

Advanced SQL - Lecture 6 - Introduction to Databases (1007156ANR)
Advanced SQL - Lecture 6 - Introduction to Databases (1007156ANR)Advanced SQL - Lecture 6 - Introduction to Databases (1007156ANR)
Advanced SQL - Lecture 6 - Introduction to Databases (1007156ANR)Beat Signer
 
Ch 8 Client Server
Ch 8  Client  ServerCh 8  Client  Server
Ch 8 Client Serverguest8fdbdd
 
2-Tier and 3-Tier Architecture of Enterprise Resource Planning
2-Tier and 3-Tier Architecture of Enterprise Resource Planning2-Tier and 3-Tier Architecture of Enterprise Resource Planning
2-Tier and 3-Tier Architecture of Enterprise Resource PlanningS M Qamar Abbas
 
Course Review - Lecture 13 - Introduction to Databases (1007156ANR)
Course Review - Lecture 13 - Introduction to Databases (1007156ANR)Course Review - Lecture 13 - Introduction to Databases (1007156ANR)
Course Review - Lecture 13 - Introduction to Databases (1007156ANR)Beat Signer
 
SLide1 (4 files merged)2 [Autosaved].ppt
SLide1 (4 files merged)2 [Autosaved].pptSLide1 (4 files merged)2 [Autosaved].ppt
SLide1 (4 files merged)2 [Autosaved].pptsarablisschs
 
Client/Server Architecture By Faisal Shahzad
Client/Server Architecture By Faisal Shahzad Client/Server Architecture By Faisal Shahzad
Client/Server Architecture By Faisal Shahzad Faisal Shehzad
 
Chapter2
Chapter2Chapter2
Chapter2suks_87
 
Dbms level of architecture2
Dbms level of architecture2Dbms level of architecture2
Dbms level of architecture2Akshaya Parida
 
Database systems - Chapter 2 (Remaining)
Database systems - Chapter 2 (Remaining)Database systems - Chapter 2 (Remaining)
Database systems - Chapter 2 (Remaining)shahab3
 
Database-management-system-dbms-ppt.pptx
Database-management-system-dbms-ppt.pptxDatabase-management-system-dbms-ppt.pptx
Database-management-system-dbms-ppt.pptxsqlserver4
 
Client computing evolution ppt11
Client computing evolution ppt11Client computing evolution ppt11
Client computing evolution ppt11Tech_MX
 
SingleLecture.pdf
SingleLecture.pdfSingleLecture.pdf
SingleLecture.pdfMastroQUU
 
Introduction to Database
Introduction to DatabaseIntroduction to Database
Introduction to DatabaseSiti Ismail
 
database introductoin optimization1-app6891.pdf
database introductoin optimization1-app6891.pdfdatabase introductoin optimization1-app6891.pdf
database introductoin optimization1-app6891.pdfparveen204931475
 

Semelhante a DBMS Architectures and Features - Lecture 7 - Introduction to Databases (1007156ANR) (20)

Advanced SQL - Lecture 6 - Introduction to Databases (1007156ANR)
Advanced SQL - Lecture 6 - Introduction to Databases (1007156ANR)Advanced SQL - Lecture 6 - Introduction to Databases (1007156ANR)
Advanced SQL - Lecture 6 - Introduction to Databases (1007156ANR)
 
Client Server Architecture1
Client Server Architecture1Client Server Architecture1
Client Server Architecture1
 
Ch 8 Client Server
Ch 8  Client  ServerCh 8  Client  Server
Ch 8 Client Server
 
2-Tier and 3-Tier Architecture of Enterprise Resource Planning
2-Tier and 3-Tier Architecture of Enterprise Resource Planning2-Tier and 3-Tier Architecture of Enterprise Resource Planning
2-Tier and 3-Tier Architecture of Enterprise Resource Planning
 
Course Review - Lecture 13 - Introduction to Databases (1007156ANR)
Course Review - Lecture 13 - Introduction to Databases (1007156ANR)Course Review - Lecture 13 - Introduction to Databases (1007156ANR)
Course Review - Lecture 13 - Introduction to Databases (1007156ANR)
 
SLide1 (4 files merged)2 [Autosaved].ppt
SLide1 (4 files merged)2 [Autosaved].pptSLide1 (4 files merged)2 [Autosaved].ppt
SLide1 (4 files merged)2 [Autosaved].ppt
 
Client server
Client serverClient server
Client server
 
Client/Server Architecture By Faisal Shahzad
Client/Server Architecture By Faisal Shahzad Client/Server Architecture By Faisal Shahzad
Client/Server Architecture By Faisal Shahzad
 
Chapter2
Chapter2Chapter2
Chapter2
 
Dbms level of architecture2
Dbms level of architecture2Dbms level of architecture2
Dbms level of architecture2
 
Database systems - Chapter 2 (Remaining)
Database systems - Chapter 2 (Remaining)Database systems - Chapter 2 (Remaining)
Database systems - Chapter 2 (Remaining)
 
Db lec 05_new
Db lec 05_newDb lec 05_new
Db lec 05_new
 
Database-management-system-dbms-ppt.pptx
Database-management-system-dbms-ppt.pptxDatabase-management-system-dbms-ppt.pptx
Database-management-system-dbms-ppt.pptx
 
CH12.ppt
CH12.pptCH12.ppt
CH12.ppt
 
Client computing evolution ppt11
Client computing evolution ppt11Client computing evolution ppt11
Client computing evolution ppt11
 
Database as a Service - Tutorial @ICDE 2010
Database as a Service - Tutorial @ICDE 2010Database as a Service - Tutorial @ICDE 2010
Database as a Service - Tutorial @ICDE 2010
 
SingleLecture.pdf
SingleLecture.pdfSingleLecture.pdf
SingleLecture.pdf
 
Future prediction-ds
Future prediction-dsFuture prediction-ds
Future prediction-ds
 
Introduction to Database
Introduction to DatabaseIntroduction to Database
Introduction to Database
 
database introductoin optimization1-app6891.pdf
database introductoin optimization1-app6891.pdfdatabase introductoin optimization1-app6891.pdf
database introductoin optimization1-app6891.pdf
 

Mais de Beat Signer

Introduction - Lecture 1 - Human-Computer Interaction (1023841ANR)
Introduction - Lecture 1 - Human-Computer Interaction (1023841ANR)Introduction - Lecture 1 - Human-Computer Interaction (1023841ANR)
Introduction - Lecture 1 - Human-Computer Interaction (1023841ANR)Beat Signer
 
Indoor Positioning Using the OpenHPS Framework
Indoor Positioning Using the OpenHPS FrameworkIndoor Positioning Using the OpenHPS Framework
Indoor Positioning Using the OpenHPS FrameworkBeat Signer
 
Personalised Learning Environments Based on Knowledge Graphs and the Zone of ...
Personalised Learning Environments Based on Knowledge Graphs and the Zone of ...Personalised Learning Environments Based on Knowledge Graphs and the Zone of ...
Personalised Learning Environments Based on Knowledge Graphs and the Zone of ...Beat Signer
 
Cross-Media Technologies and Applications - Future Directions for Personal In...
Cross-Media Technologies and Applications - Future Directions for Personal In...Cross-Media Technologies and Applications - Future Directions for Personal In...
Cross-Media Technologies and Applications - Future Directions for Personal In...Beat Signer
 
Bridging the Gap: Managing and Interacting with Information Across Media Boun...
Bridging the Gap: Managing and Interacting with Information Across Media Boun...Bridging the Gap: Managing and Interacting with Information Across Media Boun...
Bridging the Gap: Managing and Interacting with Information Across Media Boun...Beat Signer
 
Codeschool in a Box: A Low-Barrier Approach to Packaging Programming Curricula
Codeschool in a Box: A Low-Barrier Approach to Packaging Programming CurriculaCodeschool in a Box: A Low-Barrier Approach to Packaging Programming Curricula
Codeschool in a Box: A Low-Barrier Approach to Packaging Programming CurriculaBeat Signer
 
The RSL Hypermedia Metamodel and Its Application in Cross-Media Solutions
The RSL Hypermedia Metamodel and Its Application in Cross-Media Solutions The RSL Hypermedia Metamodel and Its Application in Cross-Media Solutions
The RSL Hypermedia Metamodel and Its Application in Cross-Media Solutions Beat Signer
 
Case Studies and Course Review - Lecture 12 - Information Visualisation (4019...
Case Studies and Course Review - Lecture 12 - Information Visualisation (4019...Case Studies and Course Review - Lecture 12 - Information Visualisation (4019...
Case Studies and Course Review - Lecture 12 - Information Visualisation (4019...Beat Signer
 
Dashboards - Lecture 11 - Information Visualisation (4019538FNR)
Dashboards - Lecture 11 - Information Visualisation (4019538FNR)Dashboards - Lecture 11 - Information Visualisation (4019538FNR)
Dashboards - Lecture 11 - Information Visualisation (4019538FNR)Beat Signer
 
Interaction - Lecture 10 - Information Visualisation (4019538FNR)
Interaction - Lecture 10 - Information Visualisation (4019538FNR)Interaction - Lecture 10 - Information Visualisation (4019538FNR)
Interaction - Lecture 10 - Information Visualisation (4019538FNR)Beat Signer
 
View Manipulation and Reduction - Lecture 9 - Information Visualisation (4019...
View Manipulation and Reduction - Lecture 9 - Information Visualisation (4019...View Manipulation and Reduction - Lecture 9 - Information Visualisation (4019...
View Manipulation and Reduction - Lecture 9 - Information Visualisation (4019...Beat Signer
 
Visualisation Techniques - Lecture 8 - Information Visualisation (4019538FNR)
Visualisation Techniques - Lecture 8 - Information Visualisation (4019538FNR)Visualisation Techniques - Lecture 8 - Information Visualisation (4019538FNR)
Visualisation Techniques - Lecture 8 - Information Visualisation (4019538FNR)Beat Signer
 
Design Guidelines and Principles - Lecture 7 - Information Visualisation (401...
Design Guidelines and Principles - Lecture 7 - Information Visualisation (401...Design Guidelines and Principles - Lecture 7 - Information Visualisation (401...
Design Guidelines and Principles - Lecture 7 - Information Visualisation (401...Beat Signer
 
Data Processing and Visualisation Frameworks - Lecture 6 - Information Visual...
Data Processing and Visualisation Frameworks - Lecture 6 - Information Visual...Data Processing and Visualisation Frameworks - Lecture 6 - Information Visual...
Data Processing and Visualisation Frameworks - Lecture 6 - Information Visual...Beat Signer
 
Data Presentation - Lecture 5 - Information Visualisation (4019538FNR)
Data Presentation - Lecture 5 - Information Visualisation (4019538FNR)Data Presentation - Lecture 5 - Information Visualisation (4019538FNR)
Data Presentation - Lecture 5 - Information Visualisation (4019538FNR)Beat Signer
 
Analysis and Validation - Lecture 4 - Information Visualisation (4019538FNR)
Analysis and Validation - Lecture 4 - Information Visualisation (4019538FNR)Analysis and Validation - Lecture 4 - Information Visualisation (4019538FNR)
Analysis and Validation - Lecture 4 - Information Visualisation (4019538FNR)Beat Signer
 
Data Representation - Lecture 3 - Information Visualisation (4019538FNR)
Data Representation - Lecture 3 - Information Visualisation (4019538FNR)Data Representation - Lecture 3 - Information Visualisation (4019538FNR)
Data Representation - Lecture 3 - Information Visualisation (4019538FNR)Beat Signer
 
Human Perception and Colour Theory - Lecture 2 - Information Visualisation (4...
Human Perception and Colour Theory - Lecture 2 - Information Visualisation (4...Human Perception and Colour Theory - Lecture 2 - Information Visualisation (4...
Human Perception and Colour Theory - Lecture 2 - Information Visualisation (4...Beat Signer
 
Introduction - Lecture 1 - Information Visualisation (4019538FNR)
Introduction - Lecture 1 - Information Visualisation (4019538FNR)Introduction - Lecture 1 - Information Visualisation (4019538FNR)
Introduction - Lecture 1 - Information Visualisation (4019538FNR)Beat Signer
 
Towards a Framework for Dynamic Data Physicalisation
Towards a Framework for Dynamic Data PhysicalisationTowards a Framework for Dynamic Data Physicalisation
Towards a Framework for Dynamic Data PhysicalisationBeat Signer
 

Mais de Beat Signer (20)

Introduction - Lecture 1 - Human-Computer Interaction (1023841ANR)
Introduction - Lecture 1 - Human-Computer Interaction (1023841ANR)Introduction - Lecture 1 - Human-Computer Interaction (1023841ANR)
Introduction - Lecture 1 - Human-Computer Interaction (1023841ANR)
 
Indoor Positioning Using the OpenHPS Framework
Indoor Positioning Using the OpenHPS FrameworkIndoor Positioning Using the OpenHPS Framework
Indoor Positioning Using the OpenHPS Framework
 
Personalised Learning Environments Based on Knowledge Graphs and the Zone of ...
Personalised Learning Environments Based on Knowledge Graphs and the Zone of ...Personalised Learning Environments Based on Knowledge Graphs and the Zone of ...
Personalised Learning Environments Based on Knowledge Graphs and the Zone of ...
 
Cross-Media Technologies and Applications - Future Directions for Personal In...
Cross-Media Technologies and Applications - Future Directions for Personal In...Cross-Media Technologies and Applications - Future Directions for Personal In...
Cross-Media Technologies and Applications - Future Directions for Personal In...
 
Bridging the Gap: Managing and Interacting with Information Across Media Boun...
Bridging the Gap: Managing and Interacting with Information Across Media Boun...Bridging the Gap: Managing and Interacting with Information Across Media Boun...
Bridging the Gap: Managing and Interacting with Information Across Media Boun...
 
Codeschool in a Box: A Low-Barrier Approach to Packaging Programming Curricula
Codeschool in a Box: A Low-Barrier Approach to Packaging Programming CurriculaCodeschool in a Box: A Low-Barrier Approach to Packaging Programming Curricula
Codeschool in a Box: A Low-Barrier Approach to Packaging Programming Curricula
 
The RSL Hypermedia Metamodel and Its Application in Cross-Media Solutions
The RSL Hypermedia Metamodel and Its Application in Cross-Media Solutions The RSL Hypermedia Metamodel and Its Application in Cross-Media Solutions
The RSL Hypermedia Metamodel and Its Application in Cross-Media Solutions
 
Case Studies and Course Review - Lecture 12 - Information Visualisation (4019...
Case Studies and Course Review - Lecture 12 - Information Visualisation (4019...Case Studies and Course Review - Lecture 12 - Information Visualisation (4019...
Case Studies and Course Review - Lecture 12 - Information Visualisation (4019...
 
Dashboards - Lecture 11 - Information Visualisation (4019538FNR)
Dashboards - Lecture 11 - Information Visualisation (4019538FNR)Dashboards - Lecture 11 - Information Visualisation (4019538FNR)
Dashboards - Lecture 11 - Information Visualisation (4019538FNR)
 
Interaction - Lecture 10 - Information Visualisation (4019538FNR)
Interaction - Lecture 10 - Information Visualisation (4019538FNR)Interaction - Lecture 10 - Information Visualisation (4019538FNR)
Interaction - Lecture 10 - Information Visualisation (4019538FNR)
 
View Manipulation and Reduction - Lecture 9 - Information Visualisation (4019...
View Manipulation and Reduction - Lecture 9 - Information Visualisation (4019...View Manipulation and Reduction - Lecture 9 - Information Visualisation (4019...
View Manipulation and Reduction - Lecture 9 - Information Visualisation (4019...
 
Visualisation Techniques - Lecture 8 - Information Visualisation (4019538FNR)
Visualisation Techniques - Lecture 8 - Information Visualisation (4019538FNR)Visualisation Techniques - Lecture 8 - Information Visualisation (4019538FNR)
Visualisation Techniques - Lecture 8 - Information Visualisation (4019538FNR)
 
Design Guidelines and Principles - Lecture 7 - Information Visualisation (401...
Design Guidelines and Principles - Lecture 7 - Information Visualisation (401...Design Guidelines and Principles - Lecture 7 - Information Visualisation (401...
Design Guidelines and Principles - Lecture 7 - Information Visualisation (401...
 
Data Processing and Visualisation Frameworks - Lecture 6 - Information Visual...
Data Processing and Visualisation Frameworks - Lecture 6 - Information Visual...Data Processing and Visualisation Frameworks - Lecture 6 - Information Visual...
Data Processing and Visualisation Frameworks - Lecture 6 - Information Visual...
 
Data Presentation - Lecture 5 - Information Visualisation (4019538FNR)
Data Presentation - Lecture 5 - Information Visualisation (4019538FNR)Data Presentation - Lecture 5 - Information Visualisation (4019538FNR)
Data Presentation - Lecture 5 - Information Visualisation (4019538FNR)
 
Analysis and Validation - Lecture 4 - Information Visualisation (4019538FNR)
Analysis and Validation - Lecture 4 - Information Visualisation (4019538FNR)Analysis and Validation - Lecture 4 - Information Visualisation (4019538FNR)
Analysis and Validation - Lecture 4 - Information Visualisation (4019538FNR)
 
Data Representation - Lecture 3 - Information Visualisation (4019538FNR)
Data Representation - Lecture 3 - Information Visualisation (4019538FNR)Data Representation - Lecture 3 - Information Visualisation (4019538FNR)
Data Representation - Lecture 3 - Information Visualisation (4019538FNR)
 
Human Perception and Colour Theory - Lecture 2 - Information Visualisation (4...
Human Perception and Colour Theory - Lecture 2 - Information Visualisation (4...Human Perception and Colour Theory - Lecture 2 - Information Visualisation (4...
Human Perception and Colour Theory - Lecture 2 - Information Visualisation (4...
 
Introduction - Lecture 1 - Information Visualisation (4019538FNR)
Introduction - Lecture 1 - Information Visualisation (4019538FNR)Introduction - Lecture 1 - Information Visualisation (4019538FNR)
Introduction - Lecture 1 - Information Visualisation (4019538FNR)
 
Towards a Framework for Dynamic Data Physicalisation
Towards a Framework for Dynamic Data PhysicalisationTowards a Framework for Dynamic Data Physicalisation
Towards a Framework for Dynamic Data Physicalisation
 

Último

Man or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptx
Man or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptxMan or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptx
Man or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptxDhatriParmar
 
Unraveling Hypertext_ Analyzing Postmodern Elements in Literature.pptx
Unraveling Hypertext_ Analyzing  Postmodern Elements in  Literature.pptxUnraveling Hypertext_ Analyzing  Postmodern Elements in  Literature.pptx
Unraveling Hypertext_ Analyzing Postmodern Elements in Literature.pptxDhatriParmar
 
Grade Three -ELLNA-REVIEWER-ENGLISH.pptx
Grade Three -ELLNA-REVIEWER-ENGLISH.pptxGrade Three -ELLNA-REVIEWER-ENGLISH.pptx
Grade Three -ELLNA-REVIEWER-ENGLISH.pptxkarenfajardo43
 
Satirical Depths - A Study of Gabriel Okara's Poem - 'You Laughed and Laughed...
Satirical Depths - A Study of Gabriel Okara's Poem - 'You Laughed and Laughed...Satirical Depths - A Study of Gabriel Okara's Poem - 'You Laughed and Laughed...
Satirical Depths - A Study of Gabriel Okara's Poem - 'You Laughed and Laughed...HetalPathak10
 
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptxBIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptxSayali Powar
 
ClimART Action | eTwinning Project
ClimART Action    |    eTwinning ProjectClimART Action    |    eTwinning Project
ClimART Action | eTwinning Projectjordimapav
 
Congestive Cardiac Failure..presentation
Congestive Cardiac Failure..presentationCongestive Cardiac Failure..presentation
Congestive Cardiac Failure..presentationdeepaannamalai16
 
Employablity presentation and Future Career Plan.pptx
Employablity presentation and Future Career Plan.pptxEmployablity presentation and Future Career Plan.pptx
Employablity presentation and Future Career Plan.pptxryandux83rd
 
Blowin' in the Wind of Caste_ Bob Dylan's Song as a Catalyst for Social Justi...
Blowin' in the Wind of Caste_ Bob Dylan's Song as a Catalyst for Social Justi...Blowin' in the Wind of Caste_ Bob Dylan's Song as a Catalyst for Social Justi...
Blowin' in the Wind of Caste_ Bob Dylan's Song as a Catalyst for Social Justi...DhatriParmar
 
Healthy Minds, Flourishing Lives: A Philosophical Approach to Mental Health a...
Healthy Minds, Flourishing Lives: A Philosophical Approach to Mental Health a...Healthy Minds, Flourishing Lives: A Philosophical Approach to Mental Health a...
Healthy Minds, Flourishing Lives: A Philosophical Approach to Mental Health a...Osopher
 
An Overview of the Calendar App in Odoo 17 ERP
An Overview of the Calendar App in Odoo 17 ERPAn Overview of the Calendar App in Odoo 17 ERP
An Overview of the Calendar App in Odoo 17 ERPCeline George
 
Narcotic and Non Narcotic Analgesic..pdf
Narcotic and Non Narcotic Analgesic..pdfNarcotic and Non Narcotic Analgesic..pdf
Narcotic and Non Narcotic Analgesic..pdfPrerana Jadhav
 
Scientific Writing :Research Discourse
Scientific  Writing :Research  DiscourseScientific  Writing :Research  Discourse
Scientific Writing :Research DiscourseAnita GoswamiGiri
 
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...Nguyen Thanh Tu Collection
 
How to Uninstall a Module in Odoo 17 Using Command Line
How to Uninstall a Module in Odoo 17 Using Command LineHow to Uninstall a Module in Odoo 17 Using Command Line
How to Uninstall a Module in Odoo 17 Using Command LineCeline George
 
CHUYÊN ĐỀ ÔN THEO CÂU CHO HỌC SINH LỚP 12 ĐỂ ĐẠT ĐIỂM 5+ THI TỐT NGHIỆP THPT ...
CHUYÊN ĐỀ ÔN THEO CÂU CHO HỌC SINH LỚP 12 ĐỂ ĐẠT ĐIỂM 5+ THI TỐT NGHIỆP THPT ...CHUYÊN ĐỀ ÔN THEO CÂU CHO HỌC SINH LỚP 12 ĐỂ ĐẠT ĐIỂM 5+ THI TỐT NGHIỆP THPT ...
CHUYÊN ĐỀ ÔN THEO CÂU CHO HỌC SINH LỚP 12 ĐỂ ĐẠT ĐIỂM 5+ THI TỐT NGHIỆP THPT ...Nguyen Thanh Tu Collection
 

Último (20)

Spearman's correlation,Formula,Advantages,
Spearman's correlation,Formula,Advantages,Spearman's correlation,Formula,Advantages,
Spearman's correlation,Formula,Advantages,
 
Man or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptx
Man or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptxMan or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptx
Man or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptx
 
Unraveling Hypertext_ Analyzing Postmodern Elements in Literature.pptx
Unraveling Hypertext_ Analyzing  Postmodern Elements in  Literature.pptxUnraveling Hypertext_ Analyzing  Postmodern Elements in  Literature.pptx
Unraveling Hypertext_ Analyzing Postmodern Elements in Literature.pptx
 
Grade Three -ELLNA-REVIEWER-ENGLISH.pptx
Grade Three -ELLNA-REVIEWER-ENGLISH.pptxGrade Three -ELLNA-REVIEWER-ENGLISH.pptx
Grade Three -ELLNA-REVIEWER-ENGLISH.pptx
 
Satirical Depths - A Study of Gabriel Okara's Poem - 'You Laughed and Laughed...
Satirical Depths - A Study of Gabriel Okara's Poem - 'You Laughed and Laughed...Satirical Depths - A Study of Gabriel Okara's Poem - 'You Laughed and Laughed...
Satirical Depths - A Study of Gabriel Okara's Poem - 'You Laughed and Laughed...
 
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptxBIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
 
ClimART Action | eTwinning Project
ClimART Action    |    eTwinning ProjectClimART Action    |    eTwinning Project
ClimART Action | eTwinning Project
 
Congestive Cardiac Failure..presentation
Congestive Cardiac Failure..presentationCongestive Cardiac Failure..presentation
Congestive Cardiac Failure..presentation
 
Employablity presentation and Future Career Plan.pptx
Employablity presentation and Future Career Plan.pptxEmployablity presentation and Future Career Plan.pptx
Employablity presentation and Future Career Plan.pptx
 
Blowin' in the Wind of Caste_ Bob Dylan's Song as a Catalyst for Social Justi...
Blowin' in the Wind of Caste_ Bob Dylan's Song as a Catalyst for Social Justi...Blowin' in the Wind of Caste_ Bob Dylan's Song as a Catalyst for Social Justi...
Blowin' in the Wind of Caste_ Bob Dylan's Song as a Catalyst for Social Justi...
 
Mattingly "AI & Prompt Design" - Introduction to Machine Learning"
Mattingly "AI & Prompt Design" - Introduction to Machine Learning"Mattingly "AI & Prompt Design" - Introduction to Machine Learning"
Mattingly "AI & Prompt Design" - Introduction to Machine Learning"
 
Paradigm shift in nursing research by RS MEHTA
Paradigm shift in nursing research by RS MEHTAParadigm shift in nursing research by RS MEHTA
Paradigm shift in nursing research by RS MEHTA
 
Healthy Minds, Flourishing Lives: A Philosophical Approach to Mental Health a...
Healthy Minds, Flourishing Lives: A Philosophical Approach to Mental Health a...Healthy Minds, Flourishing Lives: A Philosophical Approach to Mental Health a...
Healthy Minds, Flourishing Lives: A Philosophical Approach to Mental Health a...
 
An Overview of the Calendar App in Odoo 17 ERP
An Overview of the Calendar App in Odoo 17 ERPAn Overview of the Calendar App in Odoo 17 ERP
An Overview of the Calendar App in Odoo 17 ERP
 
Narcotic and Non Narcotic Analgesic..pdf
Narcotic and Non Narcotic Analgesic..pdfNarcotic and Non Narcotic Analgesic..pdf
Narcotic and Non Narcotic Analgesic..pdf
 
prashanth updated resume 2024 for Teaching Profession
prashanth updated resume 2024 for Teaching Professionprashanth updated resume 2024 for Teaching Profession
prashanth updated resume 2024 for Teaching Profession
 
Scientific Writing :Research Discourse
Scientific  Writing :Research  DiscourseScientific  Writing :Research  Discourse
Scientific Writing :Research Discourse
 
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...
 
How to Uninstall a Module in Odoo 17 Using Command Line
How to Uninstall a Module in Odoo 17 Using Command LineHow to Uninstall a Module in Odoo 17 Using Command Line
How to Uninstall a Module in Odoo 17 Using Command Line
 
CHUYÊN ĐỀ ÔN THEO CÂU CHO HỌC SINH LỚP 12 ĐỂ ĐẠT ĐIỂM 5+ THI TỐT NGHIỆP THPT ...
CHUYÊN ĐỀ ÔN THEO CÂU CHO HỌC SINH LỚP 12 ĐỂ ĐẠT ĐIỂM 5+ THI TỐT NGHIỆP THPT ...CHUYÊN ĐỀ ÔN THEO CÂU CHO HỌC SINH LỚP 12 ĐỂ ĐẠT ĐIỂM 5+ THI TỐT NGHIỆP THPT ...
CHUYÊN ĐỀ ÔN THEO CÂU CHO HỌC SINH LỚP 12 ĐỂ ĐẠT ĐIỂM 5+ THI TỐT NGHIỆP THPT ...
 

DBMS Architectures and Features - Lecture 7 - Introduction to Databases (1007156ANR)

  • 1. 2 December 2005 Introduction to Databases DBMS Architectures and Features Prof. Beat Signer Department of Computer Science Vrije Universiteit Brussel http://www.beatsigner.com
  • 2. Beat Signer - Department of Computer Science - bsigner@vub.ac.be 2March 31, 2017 DBMS Components Access Methods System Buffers Authorisation Control Integrity Checker Command Processor Program Object Code DDL Compiler File Manager Buffer Manager Recovery Manager Scheduler Query Optimiser Transaction Manager Query Compiler Queries Catalogue Manager DML Preprocessor Database Schema Application Programs Database Manager Data Manager DBMS Programmers Users DB Admins Based on 'Components of a DBMS', Database Systems, T. Connolly and C. Begg, Addison-Wesley 2010 Data, Indices and System Catalogue
  • 3. Beat Signer - Department of Computer Science - bsigner@vub.ac.be 3March 31, 2017 DBMS Components ...  DML preprocessor  transforms embedded SQL statements into statements of the host language  interacts with the query compiler to generate the appropriate host language code  Query compiler  transforms queries into a set of low-level instructions (query plan) which are forwarded to the database manager component  DDL compiler  converts a set of DDL statements into a set of tables  tables and metadata are stored in the system catalogue (catalogue manager)
  • 4. Beat Signer - Department of Computer Science - bsigner@vub.ac.be 4March 31, 2017 DBMS Components ...  Catalogue manager  provides access and manages the system catalogue  used by most DBMS components  Database manager  processes user-submitted queries  interfaces with application programs  contains a set of components - query optimiser - transaction manager - ...
  • 5. Beat Signer - Department of Computer Science - bsigner@vub.ac.be 5March 31, 2017 Database Manager Components  Authorisation control  checks whether as user has the necessary rights to execute a specific operation  Command processor  executes the steps of a given query plan handed over by the authorisation control component  Integrity checker  ensures that the operation is not going to violate any integrity constraints (e.g. key constraints)  Query optimiser  computes an optimal query execution strategy  transforms the initial query plan into the best available sequence of operations on the given data
  • 6. Beat Signer - Department of Computer Science - bsigner@vub.ac.be 6March 31, 2017 Database Manager Components ...  Transaction manager  processes any transaction-specific operations  Scheduler  manages the relative order in which transaction operations are executed  Recovery manager  deals with commits and aborts of transactions  ensures that the database remains in a consistent state in case of failures  Buffer manager  transfers data between main memory and secondary storage
  • 7. Beat Signer - Department of Computer Science - bsigner@vub.ac.be 7March 31, 2017 DBMS Architectures  There is a wide variety of different DBMS architectures  Teleprocessing  File-Server Architecture  Two-Tier Client-Server Architecture  Three-Tier Client Server Architecture  N-Tier Architecture  Peer-to-Peer Architecture  Distributed DBMS  Service-Oriented Architecture  Cloud Architecture  ...
  • 8. Beat Signer - Department of Computer Science - bsigner@vub.ac.be 8March 31, 2017 Teleprocessing  Traditional multi-user system architecture  single mainframe and multiple (dumb) terminals  Heavy load on the central mainframe  runs application programs and DBMS  formats data for presentation on terminals Mainframe Terminal 1 Terminal 2 Terminal 3 Terminal n
  • 9. Beat Signer - Department of Computer Science - bsigner@vub.ac.be 9March 31, 2017 Teleprocessing ...  Tendency to replace expensive mainframes with network of personal computers (downsizing)  file-server architectures  client-server architectures  ...
  • 10. Beat Signer - Department of Computer Science - bsigner@vub.ac.be 10March 31, 2017 File-Server Architecture  A file-server is a computer that is connected to a network and mainly serves as a shared storage  e.g. for realising shared access to a database  In a file-server architecture the processing is distributed over the network  workstations (application and DBMS) request data (files) Workstation 2 (DBMS) Workstation n (DBMS) Workstation 1 (DBMS) File-Server Database data request file LAN or WAN
  • 11. Beat Signer - Department of Computer Science - bsigner@vub.ac.be 11March 31, 2017 File-Server Architecture ...  SQL Request Example  Since the file-server is not SQL-aware, the Customer and Order relations (files) have to be transferred to the client  Disadvantages  heavy network traffic  high total costs of ownership (TCO) - maintain a full instance of the DBMS on each client (workstation)  complex integrity, concurrency and recovery control - multiple DBMSs may concurrently access the same shared file SELECT name, street FROM Customer, Order WHERE Order.customerID = Customer.customerID AND name = 'Max Frisch';
  • 12. Beat Signer - Department of Computer Science - bsigner@vub.ac.be 12March 31, 2017 Two-Tier Client-Server Architecture  Application consists of a client (first tier) and a server (second tier) that might run on different machines  clear separation of concerns between client and server  thin client vs. thick client - less or more application logic on the client side  Supports decentralised business environments LAN or WAN Client 2 Client n Client 1 Server (DBMS) Database data request selected data
  • 13. Beat Signer - Department of Computer Science - bsigner@vub.ac.be 13March 31, 2017 Two-Tier Client-Server Architecture ...  Client (first tier) tasks  presentation of data (user interface)  business and data processing logic  send database requests to the server and process the results  Server (second tier) tasks  manage (concurrent) database access (data services) - authorisation, integrity checks, query/update processing, recovery control, ...  business logic (e.g. validation of data)  Different possible client-server topologies  single client and single server  multiple clients and single server  multiple clients and multiple servers
  • 14. Beat Signer - Department of Computer Science - bsigner@vub.ac.be 14March 31, 2017 Two-Tier Client-Server Architecture ...  Communication between client and server via inter- process communication (IPC) or over network  special protocols such as ODBC (JDBC) introduced earlier in the course when discussing the Call Level Interface (CLI)  Advantages  increased performance - certain tasks performed in parallel and server can be tuned for DB processing  reduced communication costs - only selected data is transferred  reduced hardware costs - only server has to run a DBMS  increased consistency/security through separation of concerns - constraint checking in a single place (server)
  • 15. Beat Signer - Department of Computer Science - bsigner@vub.ac.be 15March 31, 2017 Two-Tier Client-Server Architecture ...  Disadvantages  limitations in terms of enterprise scalability with thousands of potential clients - significant client-side administration overhead • e.g. expensive deployment of new busines and data application logic - thick client requires a considerable amount of resources (CPU, RAM, ...) to run applications efficiently
  • 16. Beat Signer - Department of Computer Science - bsigner@vub.ac.be 16March 31, 2017 Three-Tier Client-Server Architecture  In the 1990s, the three-tier client-server architecture was introduced to address the enterprise scalability problem  e.g. driven by emerging web applications  Application consists of a presentation tier (client), a logic tier (application server) and a data tier (database server) that might run on different platforms LAN or WAN Client 1 Database Server Database data request selected data Client 2 Client n Application Server
  • 17. Beat Signer - Department of Computer Science - bsigner@vub.ac.be 17March 31, 2017 Three-Tier Client-Server Architecture ...  Presentation tier (first tier) tasks  presentation of data (user interface)  basic input validation (thin client)  send requests to the server and visualise results  Logic tier (second tier / middle tier) tasks  business logic  data processing logic  Data tier (third tier) tasks  basic data validation  manage (concurrent) database access (data services) - authorisation, integrity checks, query/update processing, recovery control, ...
  • 18. Beat Signer - Department of Computer Science - bsigner@vub.ac.be 18March 31, 2017 Three-Tier Client-Server Architecture ...  Advantages  reduced costs for thin clients due to lower resource requirements (CPU, RAM, ...) - e.g. applications running in a web browser  application logic is centralised in a single application server - reduces the software distribution problem (updates) that is present in two-tier client-server architectures  increased modularity - easier to replace one tier without affecting the other tiers  load balancing becomes easier with a clear separation between the core business logic and the database functionality
  • 19. Beat Signer - Department of Computer Science - bsigner@vub.ac.be 19March 31, 2017 Web Information Systems (WIS)  The three-tier architecture maps very naturally to web environments  browser as a thin client, application server and database server  The move towards thin browser clients has dramatically reduced the costs for software deployment Internet HTTP Request HTTP Response Client Application Server DB Server Database
  • 20. Beat Signer - Department of Computer Science - bsigner@vub.ac.be 20March 31, 2017 N-Tier Architecture  The three-tier architecture can be extended with additional intermediary tiers for increased flexibility  e.g. separation between web server and application server in the previous web information system example - increases the flexibility for load balancing by introducing multiple web servers - only dynamic content delivered by the application server whereas static content is directly managed by the web server Internet HTTP Request HTTP Response Client Application Server HTML Pages Web Server DB Server Database
  • 21. Beat Signer - Department of Computer Science - bsigner@vub.ac.be 21March 31, 2017 Peer-to-Peer Architecture  Systems exchanging information and services in a peer- to-peer-like manner without a central authority  no global schema  need for schema integration (matching)  Data and service sharing  no dedicated clients and servers  sites may dynamically form new client/server relationships LAN or WAN Site 3 Site n Database 3 Site 2 Database 2 Site 1 Database 1 Database n
  • 22. Beat Signer - Department of Computer Science - bsigner@vub.ac.be 22March 31, 2017 Middleware  Software that connects (mediates) between software components or applications  hide complexity of heterogenous and distributed components (e.g. servers) and provide a uniform interface  There exist different types of middleware  remote procedure call (RPC) - Java RMI - CORBA - XML RPC  asynchronous publish/subscribe - subscribe for different types of messages  SQL-oriented data access - open database connectivity (ODBC), JDBC, ...  ...
  • 23. Beat Signer - Department of Computer Science - bsigner@vub.ac.be 23March 31, 2017 Transaction Processing Monitor  Complex applications can be built on top of several resource managers  e.g. multiple DBMSs, operating systems, ...  A Transaction Processing Monitor (TP Monitor) is a middleware component that provides uniform access to the services of a number of resource managers DB Server 1 Database 1 DB Server n Database n TP Monitor Service 1 Service r . . . Client 1 Client m Application Server
  • 24. Beat Signer - Department of Computer Science - bsigner@vub.ac.be 24March 31, 2017 Transaction Processing Monitor ...  A TP Monitor offers a number of advantages  transaction routing - increase scalability by directing transactions to specific DBMSs  distributed transaction management - manage transactions that require access to multiple heterogeneous DBMSs - e.g. based on XA standard for distributed transaction processing  load balancing - balance requests across multiple DBMSs by directing to least loaded server  funelling - establish connections with DBMSs and funnel user requests through these connections thereby reducing the number of required connections  increased reliability - if a DBMS fails, the TP monitor can resubmit the request to another DBMS or hold the transaction request until the DBMS becomes available and resubmit
  • 25. Beat Signer - Department of Computer Science - bsigner@vub.ac.be 25March 31, 2017 Parallel Database Architectures  Parallel machines (multiple processors) can be used to speed up the transaction processing  Different models for parallel database architectures  shared memory, shared disk, shared nothing and hierarchical Processor Memory Processor Processor Disk Disk shared memory Processor Processor Processor Disk Disk shared disk Memory Memory Memory Processor Disk shared nothing Memory Processor Disk Memory
  • 26. Beat Signer - Department of Computer Science - bsigner@vub.ac.be 26March 31, 2017 Parallel Database Architectures ...  Shared memory  processors and disks have access to a shared memory via a bus  very efficient communication between processors  not scalable since bus becomes a bottleneck  Shared disk  all processors can access all disks via an interconnection network  each processor has its own memory  certain degree of fault tolerance if processor/memory fails  also disks maybe have fault tollerance (e.g. RAID architecture)  interconnection to the disk systems becomes bottleneck
  • 27. Beat Signer - Department of Computer Science - bsigner@vub.ac.be 27March 31, 2017 Parallel Database Architectures ...  Shared nothing  each node consists of a processor, memory and one or more disks  high-speed interconnection network between processors  more scalable than shared memory or shared disk model  increased communication costs for non-local disk access  Hierarchical  combines the different models (composition)  top level is shared nothing between nodes - each node can be a shared memory or shared disk "subsystem"
  • 28. Beat Signer - Department of Computer Science - bsigner@vub.ac.be 28March 31, 2017 Distributed DBMS (DDBMS)  Distributed database  logically related collection of shared data and metadata that is distributed over a network  Distributed DBMS  software system to manage the distributed database in a transparent way LAN or WAN Site 3 Site n Database Site 2 Database Site 1 Database Database
  • 29. Beat Signer - Department of Computer Science - bsigner@vub.ac.be 29March 31, 2017 Distributed DBMS (DDBMS) ...  Distinction between local and global transactions  local transaction - accesses only data from the site from which the transaction was initiated  global transaction - accesses data from several different sites  Reasons for building a distributed DBMS  data sharing - possibility to access data that resides at other sides  autonomy - each site retains a certain degree of control over the local data  availability - if one site fails the other sites may still be able to continue operating - data might be replicated at serveral sites for increased availability
  • 30. Beat Signer - Department of Computer Science - bsigner@vub.ac.be 30March 31, 2017 Distributed DBMS (DDBMS) ...  Reasons for building a distributed DBMS ...  costs and scalability - use cluster of PCs instead of large mainframe systems  integration of existing DBMS - coexistence of legacy systems with new applications  dynamic organisational structure - mergers and acquisitions  Implementation issues  transactions have to be executed atomically accross different sites (two-phase commit protocol) - commit decission is left to a single coordinator  distributed concurrency control - deadlock detection has to be carried out across multiple sites
  • 31. Beat Signer - Department of Computer Science - bsigner@vub.ac.be 31March 31, 2017 Service-Oriented Architectures (SOA)  Architecture that modularises functionality as interoperable services  loose coupling of services  service encapsulation  interoperability between different operating systems and programming languages  new services can be defined as a mashup of existing services  Service-oriented database architecture (SODA)  e.g. single SQL Server processes acting as service providers
  • 32. Beat Signer - Department of Computer Science - bsigner@vub.ac.be 32March 31, 2017 Service-Oriented Architectures (SOA) ...  Share business logic, data and processes via web service APIs  Big Web Services - Universal Description, Discovery and Integration (UDDI) - Web Services Description Language (WSDL) - Simple Object Access Protocol (SOAP)  RESTful Web Services  Web services are based on established technologies such as the Extensible Markup Language (XML)  Special service orchestration languages for the use of services  e.g. Business Process Execution Language (BPEL)
  • 33. Beat Signer - Department of Computer Science - bsigner@vub.ac.be 33March 31, 2017 Cloud Computing  Internet-based computing with on-demand and pay-per- use access to shared resources, data and software  Main characteristics  web-based access (e.g. Web Service API or browser)  pay only for the services that are actually used (pay-per-use)  no initial investment (e.g. for resources) required The Cloud Google Microsoft Amazon Yahoo Client 1 Client 2 Client 3 Client n
  • 34. Beat Signer - Department of Computer Science - bsigner@vub.ac.be 34March 31, 2017 Cloud Computing ...  Cloud services  infrastructure as a service (IaaS) - OS virtualisation - e.g. Amazon EC2, Rackspace, ...  platform as a service (PaaS) - provide platform to run applications - e.g. Google App Engine, Windows Azure Platform, ...  software as a service (SaaS) - provide software as a service over the Internet - e.g. Google Docs, ...  Cloud service vendor gets some degree of control
  • 35. Beat Signer - Department of Computer Science - bsigner@vub.ac.be 35March 31, 2017 Cloud Computing ...  New challenges for database management in cloud computing  cloud database server might be less reliable - might become difficult to guarantee a specific quality of service (QoS) for an application realised in the cloud  backup, replication, ...  Online or web-based databases  store data in the cloud or on servers on the Internet
  • 36. Beat Signer - Department of Computer Science - bsigner@vub.ac.be 36March 31, 2017 Cloud Data Service Example  Amazon Simple Storage Service (Amazon S3)  online storage service with unlimited storage space  store objects (up to 5 TB in size) in buckets  Web Service API  Amazon SimpleDB  distributed database written in Erlang  offers a Web Service API  makes use of S3 and EC2  on demand scaling  non-relational data store - schemaless - hashtables with set of key value pairs - eventual consistency
  • 37. Beat Signer - Department of Computer Science - bsigner@vub.ac.be 37March 31, 2017 Mobile DBMS  Users want access to information on the move via mobile devices  tourist information systems  salesperson who is visiting their customers  emergency services  ...  New requirements for mobile DBMSs  small footprint databases that can run on mobile devices with limited resources - e.g. db4objects, http://www.db4o.com  location-dependent queries  context-aware queries
  • 38. Beat Signer - Department of Computer Science - bsigner@vub.ac.be 38March 31, 2017 Mobile DBMS ...  New requirements for mobile DBMSs ...  communicate with centralised database server via wireless network or fixed Internet connections  replicate data on a centralised server and on a mobile device - synchronisation challenges  caching of data and transactions to cope with potential network connection failures  opportunistic (peer-to-peer based) information exchange with other mobile DBMSs - e.g. dynamic P2P Bluetooth connections with other devices in range (proximity-based information exchange)  security - which portion of a database can/should be replicated on a mobile device?  ...
  • 39. Beat Signer - Department of Computer Science - bsigner@vub.ac.be 39March 31, 2017 Homework  Study the following chapter of the Database System Concepts book  chapter 17 - sections 17.1-17.6 - Database-System Architectures
  • 40. Beat Signer - Department of Computer Science - bsigner@vub.ac.be 40March 31, 2017 Exercise 7  Structured Query Language (SQL)  JDBC
  • 41. Beat Signer - Department of Computer Science - bsigner@vub.ac.be 41March 31, 2017 References  A. Silberschatz, H. Korth and S. Sudarshan, Database System Concepts (Sixth Edition), McGraw-Hill, 2010  T. Connolly and C. Begg, Database Systems: A Practical Approach to Design, Implementation and Management (Fifth Edition), Addison-Wesley, 2010
  • 42. 2 December 2005 Next Lecture Storage Management